Questions tagged [google-api-objc-client]

The Google Data APIs Objective-C Client Library provides an iPhone static library, a Mac OS X framework, and source code that make it easy to access data through Google Data APIs.

The Google Data APIs Objective-C Client Library provides an iPhone static library, a Mac OS X framework, and source code that make it easy to access data through Google Data APIs.

The library is available at https://code.google.com/p/google-api-objectivec-client/

50 questions
11
votes
6 answers

Error code 403 in Google+ api

I got "error": { "errors": [ { "domain": "usageLimits", "reason": "dailyLimitExceededUnreg", "message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.", "extendedHelp":…
Mohd Haider
  • 673
  • 1
  • 5
  • 25
7
votes
1 answer

Decoding Gmail API downloaded attachment data

I can able to fetch attachment by passing userId, nessageID and attachmentID(For reference: Google Developer Cocoa Docs I'm getting response as like below. { "data": "JVBERi0xLjYKJeTjz9IKMSAwIG9iagpbL1BERi9JbWFnZUIvSW1hZ2VDL0l...." "size":…
user9838950
7
votes
0 answers

Accessing files through Google Drive picker in iOS

I want to select file from Google drive app and download metadata. How can i do this in iOS without querying for all files and display on my own like this? Here they have just provided picker API for webapp :…
Rajeev
  • 4,762
  • 8
  • 41
  • 63
6
votes
8 answers

Assertion failure in -[GTMHTTPUploadFetcher connectionDidFinishLoading:]

i am trying to upload a video on youtube using Google APIs Client Library for Objective-C, I using given below code but it is keep on giving me this error, i tried to run my account on youtube example project here again it gives that same error. Can…
Iqbal Khan
  • 4,587
  • 8
  • 44
  • 83
5
votes
3 answers

Listing of all folders of Google Drive through IOS Google Drive SDK

Actually I integrated google-drive-sdk with my ios app. I can able to to upload specified file on google drive through google-drive-sdk for iOS. Additionally I want to provide a functionality for choosing a folder from available folder in which user…
5
votes
1 answer

Google Drive upload API error

I'm uploading an image to google drive via the Objective-C SDK and this morning I keep getting this error after the upload completes: 2013-02-20 13:07:30.565 Transfer[1774:907] <0x1fab2b40 GDriveDataSource.m:(165)> An error occurred: Error…
5
votes
3 answers

IOS: How to Download Google Docs files using ios google drive sdk API?

I integrated google drivs sdk with my ios app. At present am using the following code to download the files from my google drive a/c based on download url link. But when i try to download the google docs files (which has mime type…
loganathan
  • 2,056
  • 2
  • 23
  • 34
4
votes
0 answers

Youtube video upload fails after 100 % progress for some users with Backend Error code:-32099

I have added youtube api v3 using google api's objective-C client in my app to upload video to youtube. Testers of the app (in different country) reports that they are unable to upload video to youtube. Video uploading fails after reaching to 100 %…
Gaurav Singh
  • 1,897
  • 14
  • 22
4
votes
2 answers

How can I import the Google API Objective-C Client Library in to my iOS project without getting errors?

Ok. I've followed all the steps on Google's API page. I am trying to interact with Blogger's api and I'm getting exactly 9 Apple Mach-O Linker errors. How can I import the library and get everything set up and NOT get those errors? Thanks! Here's…
4
votes
1 answer

Querying Shared Google Calendar in Objective C using Google API

Have searched for any help regarding subject. I do not need OAuth, as the calendar is shared to the public. I'd really just like to get all upcoming events, and display them in a table in an iPhone app. As I have zero experience using the API, and…
catu
  • 888
  • 6
  • 24
3
votes
1 answer

Google Drive SDK Sample for iOS Not Working

I'm attempting to follow these instructions: https://developers.google.com/drive/quickstart-ios. Now the first time I tried this, I got the error mentioned on this question, but was able to solve it. The sample app now runs, however it crashes…
3
votes
1 answer

How to get the sub-folders of My Drive in Google Drive

Using the following method, I am able to get the sub-folders, but this code retrieves all the folders from the root. For example, if there is a folder in trash also it retrieves that along with folders in My Drive. My requirement is that, if the…
2
votes
1 answer

In Xcode 9 / Swift 4 Google APIs Client Library for Objective-C for REST: threading notification not working

In Xcode 9 / Swift 4 using Google APIs Client Library for Objective-C for REST: why does service.executeQuery return thread completion notification before the thread completes? I have been trying various ways but I am stuck with the following code…
2
votes
1 answer

Google Drive Api V3 is not returning Web Content link after uploading a new file to Drive?

I am working on google client Api V3 for uploading files from my IOS Application. The Scopes I have used are NSArray *scopes = [NSArray arrayWithObjects:kGTLAuthScopeDrive,kGTLAuthScopeDriveFile,kGTLAuthScopeDriveAppdata,kGTLAuthScopeDriveMetadata,…
2
votes
0 answers

How do I use captions with GTLYouTubeVideoContentDetails and GTLYouTubeVideo?

I have successfully implemented YouTube video upload. Since I am also dealing with text that can be used as subtitles, I'd like to upload these, as well. GTLYouTubeVideoContentDetails’s header does not mention what format "caption" has to be in, so…
SebHB
  • 21
  • 2
1
2 3 4