I tried gmlib with Delphi 2010 and I'm very happy about it's functionality.
Is there any property for Google API Key?
No, there isn't. It doesn't use a key. If you want to use yours, you'll have to edit map.html, where Google's JavaScript is linked in. Refer to Google's instructions for how to add your API key to the URL.
Related
Basic authentication is working fine in my openapi v3 document running in swagger-ui. Now I want to add Google+ oauth2 authentication. Can you point me to good newbie documentation how to do this?
I find the configuration options a bit overwhelming as I don't know what options to choose. Most examples I find using a google search seem to be swagger v2 based or result in me thinking I'm an idiot (which may be the case, but I think it has more to do with knowing little about google oauth flows).
The OpenAPI Specification supports the description of OpenID Connect authorization, however Swagger-UI and Editor have not yet implemented it.
The lack of this functionality has been added to the GitHub swagger/swagger-ui issues #3641 list of features not yet supported by Swagger-UI.
I have made a custom script to made some calls to the Google Webmaster Tools API.
Now I found the function ScriptApp.getOAuthToken(). So I thought I maybe able to skip the complete custom getting-a-new-token process.
But how can I add a custom scope to the project property scopes, as documented in the Google Webmaster docs?
You don't need to,
In the script editor klik: Resources and then Advanced google services.
Enable the Google Analytics API and klick on the link Google Developers Console to enable the API.
After that you can make API calls without the need of programming oAuth2.0 scopes.
See:
https://developers.google.com/apps-script/advanced/analytics
Is it possible to query publicly shared user documents in Google Docs without authentication?
The specific end goal I am looking for is to be able to supply a user id, and then list all publicly shared docs with a particular tagged in a collection.
Thanks.
This is not possible with the Google Docs API, you will need to be authorized to be able to list these publicly shared files.
I don't think this answer is 100% correct. If the document is shared globally (publicly accessible), then it should be possible according to these Stack Overflow posts:
Accessing Google Spreadsheet with Zend without Authentication
or
Read content of public shared file in Google Drive
The documentation currently does not mention OAuth 2. However, I was hoping the docs are out date, and that someone has gotten OAuth 2 to work with the Document List API. Even the Spreadsheet API supports it, so I'm having wishful thinking.
Turns out that support is in beta. Use scope=https://docs.google.com/feeds/
is there any sample of using oAuth to get hotmail contact list?
thanks.
I don't think they support OAuth. They seem to use Windows Live ID Delegated Authentication, which is a similar concept, but non-standard. They do have samples for both the authentication and contacts APIs, though.
CloudSponge can do it for you.
http://www.cloudsponge.com/test-drive
We've also written up a complete timeline of the changes to Microsoft's DelAuth/OAuth APIs over the last few years for anyone who's interested.
http://inside.cloudsponge.com/stories/2013/11/29/300-percent-increase-in-outlook.com-import-conversions.html
(In case I didn't make it obvious enough, I work for CloudSponge)
You can use socialauth library for this.
URL for the same is http://code.google.com/p/socialauth/