Giter VIP home page Giter VIP logo

google-api-objectivec-client's People

Watchers

 avatar

google-api-objectivec-client's Issues

Xcode 4 unable to link to the static GTL library

What steps will reproduce the problem?
1. Follow instruction to build the library in existing project on XCode 4 on 
mac os Snow Leopard: Follow these instruction: 
http://code.google.com/p/google-api-objectivec-client/wiki/BuildingTheLibrary 
(Linking to the iOS Static Library)

What is the expected output? What do you see instead?
I should be able to use the library files such as "GTLBooks.h" but i get errors 
such as:
Apple Mach-O Linker (Id) error



What version of the product are you using? On what operating system?
Xcode 4 on Mac OS Snow Leopard

Please provide any additional information below.
N/A

Original issue reported on code.google.com by [email protected] on 5 Mar 2012 at 9:20

shouldFetchNextPages not work

    _calendarService = [[GTLServiceCalendar alloc] init];
    _calendarService.shouldFetchNextPages = YES;
    _calendarService.retryEnabled = YES;

    GTLQueryCalendar *query = [GTLQueryCalendar queryForEventsListWithCalendarId:calendarID];
    query.fields = @"updated,items(etag,id,status,created,updated,summary,description,location,start,end,recurrence,extendedProperties)";
    query.maxResults = 200;
    query.showDeleted = NO;

    self.tasksFetchTicket = [_calendarService executeQuery:query
                                             completionHandler:^(GTLServiceTicket *ticket,
                                                                 GTLCalendarEvents *events, NSError *error) {
        // Only and exactly 200 events are returned here. I have more than 500 events. If I set query.maxResults to 100, only 100 events are returned.
        // It should return all my events, shouldn't it?
    }


Original issue reported on code.google.com by [email protected] on 9 May 2012 at 3:18

classForAdditionalProperties for GTLCalendarEventExtendedPropertiesShared and GTLCalendarEventExtendedPropertiesPrivate

Additional properties for calendar events are strings. But the inherited 
classForAdditionalProperties of GTLCalendarEventExtendedPropertiesShared and 
GTLCalendarEventExtendedPropertiesPrivate is GTLObject. It causes runtime 
warnings like this:
GTLRuntimeCommon: jsonFromAPIObject expected class 'GTLObject' instead got 
'__NSCFString'

Solution:
Override -classForAdditionalProperties in 
GTLCalendarEventExtendedPropertiesShared and 
GTLCalendarEventExtendedPropertiesPrivate to return [NSString class].

Original issue reported on code.google.com by [email protected] on 9 May 2012 at 10:30

Due date cannot be set in Google Tasks API

What steps will reproduce the problem?
1. Create: [GTLTasksTask object]
2. Set due date: patchObject.due = [GTLDateTime dateTimeWithDate:...];
3. Create: GTLQueryTasks *query = [GTLQueryTasks 
queryForTasklistsPatchWithObject:patchObject ...]
4. Execute: [tasksService executeQuery:query completionHandler:...]
5. Watch the error occur in completion handler.

What is the expected output? What do you see instead?

I expect the due date to be set. 
Instead, I see the following error:
------------
Error Domain=com.google.GTLJSONRPCErrorDomain Code=400 "The operation 
couldn’t be completed. (Bad Request)" UserInfo=0x6dac300 
{NSLocalizedFailureReason=(Bad Request), GTLStructuredError=GTLErrorObject 
0x6da0d20: {message:"Bad Request" data:[1] code:400}, error=Bad Request}
-------------

What version of the product are you using? On what operating system?
Just downloaded the latest version from SVN. 
Using iOS 4.3

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 30 Sep 2011 at 10:42

-DGTL_BUILDS_AS_FRAMEWORK=1 should be -DGTL_BUILT_AS_FRAMEWORK=1

What steps will reproduce the problem?
1. Follow build instructions in 
http://code.google.com/p/google-api-objectivec-client/wiki/BuildingTheLibrary
2. Application for Mac OS X does not build because of a preprocessor error 
(cannot find include file)

What is the expected output? What do you see instead?
Application should build

What version of the product are you using? On what operating system?
Current release on Nov 4, 2011. Mac OS X, Xcode 4

Please provide any additional information below.

You just need to change the build instructions on the wiki. The correct 
preprocessor define is GTL_BUILT_AS_FRAMEWORK=1


Original issue reported on code.google.com by [email protected] on 4 Nov 2011 at 6:31

Library can't compile on new checkout due to changes in json-framework

What steps will reproduce the problem?
1. Checkout latest revision from the source (currently r144)
2. Download the source code from the three required libraries, GTM HTTP 
Fetcher, GTM OAuth 2, and json-framework (latter has moved to github: 
https://github.com/stig/json-framework)
3. Find & Copy the required files from those libraries to the Xcode project.

What is the expected output? 
To have a project that can be built.

What do you see instead?
The file structure of the json-framework has changed, the files therein no 
longer match this project. Thus, this project is not compilable.

Request:
Please update the google-api-objectivec-client project to mirror the latest 
changes in the json-framework, or be specific about a certain revision to check 
out for each of the libraries.

Original issue reported on code.google.com by [email protected] on 6 Mar 2012 at 12:51

Need timeoutInterval setter of GTLService

Sometimes Google services just do not respond, and the default 60 
timeoutInterval is too long a wait in vain. It is better if we can set 
timeoutInterval that we see proper in our apps.

Original issue reported on code.google.com by [email protected] on 10 May 2012 at 4:40

json-framework authentication ?

What steps will reproduce the problem?
1. svn download
2.
3.

What is the expected output? What do you see instead?
json-framework authentication 
what username?
what password?

What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 30 Mar 2012 at 9:00

Calendar event's colorID property

What steps will reproduce the problem?
1. Query calendar's color set.
2. Query calendar's events.
3. Get event's colorId property.

What is the expected output? What do you see instead?
 : When event's color is first color(not calendar's color)
   colorId is Null.(Same as no event color.)

What version of the product are you using? On what operating system?
Xcode 4.2 and 4.3 beta. iOS5 and iOS5.1 beta


Original issue reported on code.google.com by [email protected] on 18 Feb 2012 at 7:32

Need more useful error messages

Currently, the returned errors are all like this:

  {
    "error" : {
      "message" : "Invalid Value",
      "code" : 400,
      "data" : [
        {
          "reason" : "invalid",
          "message" : "Invalid Value",
          "domain" : "global"
        }
      ]
    }

But which value is invalid?

Original issue reported on code.google.com by [email protected] on 10 May 2012 at 4:09

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.