Security Concerns for using Google Javascript APIs through Chrome Extension - google-chrome

I can't find any answer to my question so here you go !
I have recently developed a Google Chrome extension that uses the provided Google Javascript API in order to have access to some content of a specific tab/page.
As the content of the page is confidential, are there any risks that Google stores it somewhere ? I'm not too familiar with Security of APIs and thought that you might be able to help
Thank you,
Kind Regards,
Yohann

Related

Google Drive Android SDK: where to start from?

I have been looking all day at the Google Drive SDK for Android,
but I am a bit confused.
I need to make the list of folders and files in the user Google Drive account.
I thought that was a simple, basic standard feature, but maybe not...
Please can you help me?
You have two possible ways to go:
use RESTful API, or
use Google Drive Android Api (GDAA)
I would say the former would be easier to start with.
If you decide to go with the REST, you may use the GitHub demo here, that has both the REST and the GDAA 'CRUD' implementations (you just comment out the one you don't need). It also has some code to deal with the authentication / authorization which you need to do anything on Google Drive. See SO 28439129.
In case you decide to use GDAA, (you still have to get the authorization done), the 'official' to get you started demos are here and here.
You will definitely run into a lot of roadblocks and the solutions are mostly found here under the tag 'google-drive-android-api'.
Good Luck.

federated login for google account users in packaged chrome app

I want to implement federated login for google account users in my packaged chrome app. In the documentation is written that I should use
OpenID 2.0-compliant library compatible with your programming
language.
Which library should I use if I have javascript code? There is no javascript library so I have no idea how to include a library to my app. Any suggestions?
maybe someone know links to the working examples? I'm really confused about it.
You can find all information about OAuth in chrome extensions here (with examples)
I think that it is same for app and extension.
Hope this will help you

Getting Google+ Domain API to work in Google Apps Script

I have read loads of good documentation and example for getting external API's to work in Google Apps Script and also access Google API's with OAuth and have successfully integrated them. I can't however find any help with getting the Google+ Domains API https://developers.google.com/+/domains/ working in GAS.
I understand its a little different as it has the capability to do domain wide delegation of authority (which is what I want).
If anyone can help point me in the right direction that would be great.
Many thanks.
I have created a short sample code for the Google+ Domains API with Apps Script.
Please see the gist below.
https://gist.github.com/soundTricker/7130533
Sorry to say, but it's not possible to edit data on other users in the domain with the "Google+ Domains Service"
It tells you in the second part on the first page:
https://developers.google.com/apps-script/advanced/plus-domains
"This service doesn't support the domain-wide delegation feature in the underlying API. This means that domain admininstrators are not able to run a script on behalf of users in their domain."
This is really sad, it would have been so nice if it was possible! Please G00glez fix this =)

How can you search using drive#property keys/values?

I'm researching if Google drive might be an appropriate platform for us to host a resource library for a web application we are building. I would like to know if the new(?) file properties are programmatically searchable yet - didn't see any examples in the search section here: https://developers.google.com/drive/search-parameters.
Thanks!
They are not searchable, yet, sorry. This feature will be coming soon. Google agree that this would be an awesome and required feature to make the new properties feature fully effective.vg
I know this is super old but if anyone comes across this, Google Drive does support searching properties and appProperties for files now. See here.

Bookmarks in Google Documents

Using Google Apps Script, I wanted to create Bookmarks in Google Documents (and retrieve the links to them to use elsewhere). Went through the reference, but could not find how to do that. Clues would help. Thanks.
Sanjay
Now the required functionality is not implemented in the Document Services, but there is a proper feature request in the issue tracker. You can star this issue to demonstrate to the GAS team that people need it and wait.