One of our projects used GDATA API and we heard that this will be sunset on January 2017. I would like to know if there's an update available to migrate from GDATA to calendar resource api for python?
https://developers.google.com/admin-sdk/calendar-resource/
Thanks
The new Calendar Resource API is part of the Directory API and is one of the new style Google APIs rather than the old GData (Atom based) APIs.
There's no migration guide but you can follow the Directory API Quickstart guide for python which takes you through downloading and using the google-api-python-client client library to access and use the Directory API.
Related
Hi All: I am supposed to provide Google calendar support on my C++ application running on Linux machine.
I came to know Google APIs Client Library for C++ is deprecated.So, I would like to know as to how I can provide calendar support in my Cpp application.
What steps should I follow and better if you redirect me to some URL ?
Thanks
I think you can use google calendar api using REST API.
C++ Google Calendar REST API Examples
I am making an app in React native and will be using Amazon Web Services for image upload, I was wondering if the AWS node SDK can be used in my React Native app because I have read multiple outdated blogposts that said they were having issues, any one tried it out? (Node version: 4)
Thanks
The AWS Node SDK relies on several Node libraries like http that don't exist in React Native and are likely hard to reimplement faithfully. What I'd do is either use the native AWS SDKs and bridge them to JS, or write a small JS client just for S3 and look at the AWS Node SDK to see how they do authentication.
there is existing node packages like react-native-aws-signature that can help you do the authentication for AWS request for React-Native.
There is also a new library that has just been released to the official AWS repository which has full React Native support including a Storage module for interacting with S3 using signed requests: https://github.com/aws/aws-amplify
I am on Google Apps unlimited license, and I am trying to obtain the download log of both domain user and external user via Google API. I have tried the Activities List API of Admin SDK to obtain the activities logs but according to the following man page
https://developers.google.com/admin-sdk/reports/v1/reference/activity-ref-appendix-a/drive-event-names
the download event properties is not included in the API result. However, is there any API that allow me get the download log?
Or if there are any other ways, such as using 3rd party Google Drive Addon, any suggestions are appreciated.
Thank you
It does not appear that there is an audited activity for downloads: https://developers.google.com/admin-sdk/reports/v1/reference/activity-ref-appendix-a/drive-event-names
I implemented a php application that creates events in google calendar. But i need also to create resources, and i found the documentation for Google Apps Calendar Resource API
My first question is: where can I download the API files.
And second: i can use this in PHP? Because in the examples that they provide, they use only .NET and Python.
Thank you!
This API uses an older Google APIs technology stack called GData. There is a GData PHP client library built into the Zend framework, but it doesn't support OAuth2 and doesn't include support for this particular API. You're only option is to construct the OAuth2 tokens, XML body, and HTTP requests yourself using the documentation as a guide.
Does anybody has some experience with Product Advertising API of Amazon?
I have a django site and I need to get the affiliate info that is relevant to my site.
Which python/django packages do you use and how?
I am starting a similar project. I haven't completed it yet, so I can't answer this perfectly yet, but here is an open source python project I've found related to the Amazon Product API on PyPi:
https://pypi.python.org/pypi/python-amazon-product-api/