gdata

Google+ photos api [closed]

十年热恋 提交于 2020-01-10 19:27:40
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . Is there a Google+ photos gdata API? I was using Google picasa API but picasa has a 1 GB limit for photos. I want to upload all my photos using the script which i am writing to Google+ photos. Is there a Google+ photos gdata API? 回答1: Google+ does not currently have a public photo API. It was accidentally

iPhone libxml2 undefined symbols (with gdata, kissxml, touchxml, etc.)

 ̄綄美尐妖づ 提交于 2020-01-10 03:33:05
问题 I'm trying to use any one of the libxml based 3rd party XML parsers, but I can't because I think I have a libxml2 problem of some sort I set my other linker flags to -lxml2 and header search paths to /usr/include/libxml2 but I still get a ton of undefined symbols when I try to compile. The errors below are the result of trying to compile TouchXML. Undefined symbols: "_xmlDocDumpFormatMemory", referenced from: -[CXMLDocument description] in CXMLDocument.o "_xmlXPathNewContext", referenced from

How to get Google profile info including custom fields from an Apps Domain user?

倾然丶 夕夏残阳落幕 提交于 2020-01-09 10:10:49
问题 Using the user.profile and user.email scope and the /oauth2/v2/userinfo feed doesn't seem to return any custom fields (in my case Department) or phone numbers. These fields show up in the Domain Shared Contacts directory. Is there perhaps an Apps Domain specific feed URL something like /oauth2/{DOMAIN}/v2/userinfo ? Does the API/Service not support any custom fields yet? Is there a way to fudge this into working? Read access to your own Apps Domain Shared Contacts profile that's connected to

AuthSub: (404, 'Not Found', 'Unknown user.')

99封情书 提交于 2020-01-07 00:35:38
问题 I try to use Picasa API with AuthSub. My code: GD_CLIENT = gdata.photos.service.PhotosService() def login(request): def GetAuthSubUrl(): callback = 'http://127.0.0.1:8000/callback' scope = 'https://picasaweb.google.com/data/' secure = False session = True return GD_CLIENT.GenerateAuthSubURL(callback, scope, secure, session) auth_sub_url = GetAuthSubUrl() return HttpResponseRedirect(auth_sub_url) def confirm(request): authsub_token = request.GET['token'] token = GD_CLIENT.SetAuthSubToken

read.xls (gdata) - from an https url

↘锁芯ラ 提交于 2020-01-06 15:44:30
问题 I'm trying to read in an excel file from a URL: https://www.misoenergy.org/Library/Repository/Market%20Reports/20140507_sr_la.xls I can download the file, and read it in using read.xls from the gdata package no problem. But I get an error when trying to read it in directly. Unable to open file 'https://www.misoenergy.org/Library/Repository/Market%20Reports/20140507_sr_la.xls'. Error in xls2sep(xls, sheet, verbose = verbose, ..., method = method, : Intermediate file '/tmp/RtmptxiYS1

Integrating google+ api in iphone project

自作多情 提交于 2020-01-06 11:24:23
问题 I am developing an application in which I have to give support for google + login also.i follow this link to download the latest version of google +(gdata)api and I integrated it in my project.When I run it it was showing 16 errors.I added json files.Now it is showing 2 errors of some redundant files. Please suggest me how to solve this or any other way to integrate google + api. Any help would be highly appreciated. 回答1: The library for using the Google Plus API from iOS and Mac is google

Zend Gdata include path issue (Loader.php)

房东的猫 提交于 2020-01-06 08:51:46
问题 I've been trying to install Zend Gdata. I'm running from a dev environment so have access to php.ini. I've set the include path and when I run the verification script I get the following.. Ran PHP Installation Checker on 2011-04-28T02:25:20+00:00 PHP Extension Errors Tested No errors found Zend Framework Installation Errors Tested No errors found SSL Capabilities Errors Tested No errors found YouTube API Connectivity Errors Tested No errors found But when I try to run any of the demo files I

Zend Gdata include path issue (Loader.php)

大兔子大兔子 提交于 2020-01-06 08:51:24
问题 I've been trying to install Zend Gdata. I'm running from a dev environment so have access to php.ini. I've set the include path and when I run the verification script I get the following.. Ran PHP Installation Checker on 2011-04-28T02:25:20+00:00 PHP Extension Errors Tested No errors found Zend Framework Installation Errors Tested No errors found SSL Capabilities Errors Tested No errors found YouTube API Connectivity Errors Tested No errors found But when I try to run any of the demo files I

Zend_Gdata_Photos listing all albums and photos

谁都会走 提交于 2020-01-06 04:54:09
问题 I'm using the Zend_Gdata_Photos PHP client to access the Google Picasa API, trying to just do something very simple, list all the albums, and then list all the photos within each album. This is my code: $client = Zend_Gdata_ClientLogin::getHttpClient('*****', '*****', Zend_Gdata_Photos::AUTH_SERVICE_NAME); $gp = new Zend_Gdata_Photos($client); $userFeed = $gp->getUserFeed('default'); foreach ($userFeed as $albumEntry) { echo "<h2>{$albumEntry->title->text} ({$albumEntry->id->text})</h2>";

gdata api v3 youtube, can not retrieve contentDetails

痞子三分冷 提交于 2020-01-05 08:51:24
问题 I am trying to get the duration of a youtube video via search var request = gapi.client.youtube.search.list({ q: q, type : "video", maxResults : 10, part: 'snippet,contentDetails' }); as an additional part parameter I added contentDetails in order to get the duration as you can see in their doc. https://developers.google.com/youtube/v3/getting-started Now comes the silly part. The response I get is the following: [ { "error": { "code": -32602, "message": "contentDetails", "data": [ { "domain"