Questions tagged [gdata]

GData (Google Data Protocol) provides a simple protocol for reading and writing data on the Internet, designed by Google.

Gdata (Google Data Protocol) provides a simple protocol for reading and writing data on the Internet, designed by Google. GData combines common XML-based syndication formats (Atom and RSS) with a feed-publishing system based on the Atom Publishing Protocol, plus some extensions for handling queries. It relies on XML or JSON as a data format.

Most Google APIs today are not Google Data APIs. The Google Data APIs applies only to a few APIs, as described in the GData API Directory

991 questions
4
votes
3 answers

What is the difference between drop.levels(x) in the gdata package and as.factor(as.character(x))?

as question, as I can see the speed is higher for the later method, why use the first one? Thanks.
lokheart
  • 23,743
  • 39
  • 98
  • 169
4
votes
1 answer

Not able to change a date of my Picasa Web Albums album via Python API

I am not able to change a date of my Picasa Web Albums album via Python API. Spent many hours with that and I am hopeless now. Code: # set values remote_album.timestamp.text = str(get_published_as_timestamp()) remote_album.published.text = published…
Honza Javorek
  • 8,566
  • 8
  • 47
  • 66
4
votes
1 answer

Youtube API v3, Invalid parameter issue while video play

I am using youtube API to show video list and play that video. All was working fine with v2 but as now it's deprecated I have updated it with v3. I am getting youtube play list successfully but when I play with that videoId provided in API it fails…
Niks
  • 647
  • 5
  • 16
4
votes
1 answer

Remove dependency from pod

How do I remove dependency from a pod? I have a podfile with pod 'GData' which seems to be broken, because it generates 163 duplicate symbols errors. I think I know what it is. While installing this can be observed: Installing GTMHTTPFetcher…
raven_raven
  • 343
  • 2
  • 6
  • 17
4
votes
3 answers

Using OAuth and gdata to copy google spreadsheet

I am working with gspread to modify existing Google spreadsheets and would like to make a copy of an existing one. Unfortunately, gspread doesn't support this, but it can be done with gdata (as described in this thread): import…
norman
  • 5,128
  • 13
  • 44
  • 75
4
votes
0 answers

error 401 when i request to get all contacts using GDATA

i am using Gdata and already suceessfully login gmail and call below method - (void)viewController:(GTMOAuth2ViewControllerTouch *)viewController finishedWithAuth:(GTMOAuth2Authentication *)auth{ if (error != nil) { } else{ // i got…
Developer
  • 760
  • 3
  • 15
4
votes
2 answers

Can't find spreadsheets v3 API in Google Developers Console

Which is the right API for manipulating Spreadsheets? They somehow removed Spreadsheets v3 from the api selection in the project settings.Yet it's available at the OAuth Playground... Is it just the Drive API v2 now? Why do they have to change…
kitty
  • 67
  • 8
4
votes
1 answer

YouTube Data API v3 Direct Form Upload

I had a system setup with the YouTube Data API v2 that would let a user upload a video directly to MY YouTube account via a form on my site (I understand the implications of this, please keep in mind that I am just giving a bare bones description of…
4
votes
0 answers

conda: GData and http_interface

I tried installing the latest version of GData using the latest version of conda and Anaconda: conda install gdata It seems to have worked. The following packages will be downloaded: package | build …
Amelio Vazquez-Reina
  • 91,494
  • 132
  • 359
  • 564
4
votes
1 answer

Accessing older photos using the Picasa API

Is it possible to get a list of photos from Picasa (or Google Plus that still uses the Picasa API) that are older than a certain date? I would like to get all photos from today a year ago from a large album, the "InstantUpload" album. These are the…
Benno Richters
  • 15,378
  • 14
  • 42
  • 45
4
votes
1 answer

create google spreadsheet in specific folder in drive | Google drive api

I am trying to create a google spreadsheet in specific folder in google drive with the google drive api. So, far I have written a code to just create a spreadsheet but unfortunately it is not working. import gdata.docs.client import…
4
votes
1 answer

gdata:write.fwf Issues With data.table

library(gdata) library(data.table) # data.table fails here, data.frame doesn't ------------- df <- data.table( a = c('asdfasdf','asdf','asdgasdgasdgasdg','sdg'), b = runif(4,0,1) …
TheComeOnMan
  • 12,535
  • 8
  • 39
  • 54
4
votes
1 answer

Different Between OData And GData

What is different between OData and GData? Does OData has more advantages in .NET technologies vs GData or not? In my WCF project I want to create IQueryable models and REST platform for client,I used to OData before but I'm excited to know more…
Morteza Nemati
  • 237
  • 3
  • 9
4
votes
0 answers

Google Contacts API Failure - Server Down?

All of a sudden I've found my Google contacts-integrated web app failing to make straightforward calls to the server. I haven't changed a stitch of oAuth code in months but all of a sudden I can't connect or make calls on existing tokens. The…
RyanMac
  • 767
  • 1
  • 6
  • 18
4
votes
2 answers

Get user email info from a Dotnet Google API

I'm have working two separate implementations of Oauth2 for both the gData and the Drive C# APIs, storing token information in an OAuth2Parameters and AuthorizationState respectively. I'm able to refresh the token and use them for the necessary API…
squid808
  • 1,430
  • 2
  • 14
  • 31