My Dropbox account has been connected/synced with various devices.I want to get the devices information like most recent activities.
I tried Dropbox's HTTP API endpoints as explained in https://www.dropbox.com/developers/documentation/http/documentation.
But I am not able to get the devices information.Please someone help to get the devices information.
The Dropbox API doesn't offer a way to get the device information for the linked user account. We'll consider it a feature request.
Note that the Dropbox Business API does offer this functionality, but that's only available for Business accounts:
https://www.dropbox.com/developers/documentation/http/teams#team-devices-list_member_devices
Related
I want to use OnedDrive API to get OneDrive type, whether it is Personal or Bussiness.I know cid of Onedrive. How can i get this from commandline. Is there any possibility. I tried http, where we can get info by requesting.
I'm using the onedrive RESTful API to integrate a webapp and share file between a group of people. I manage to correctly authenticate a user and get its access token, create folders and upload files.
The problem I'm having is finding a way to invite people to a folder. The closest documentation I have found is about permissions, where it talks about updating permissions (read, write, creating links) however I cant get a way to invite a specific user to a folder like its done directly in the One drive official webapp OneDrive Invite people to folder img
We don't officially support adding permissions through OneDrive API yet. If you need to do this in a production environment right now you'd need to use the SharePoint REST API to add the user permissions.
In the near future we'll be adding an invite function to the OneDrive API. While we haven't released documentation on it yet, you can see the unofficial syntax for it by looking at the service metadata information for the consumer service (https://api.onedrive.com/v1.0/$metadata). Of course, usage of this API would not be supported until it is documented on dev.onedrive.com though.
-Ryan
I have spent the last couple of nights bashing my head against the wall amongst a see of conflicting out of date documentation and semi-helpful blog posts that were/are appropriate to what I am trying to do.
Essentially I want to write a wee personal app do download my images from PicasaWeb/Google+ and store them on my local hard disk.
I have managed to do the following:
Figured out the GData API for the appropriate request to get private album data (works fine in my 'google-logged-in' chrome browser)
Got the correct private data back from my GData URL with the token generated by the OAuth playground.
Managed to get an OAuth2 token back from https://www.googleapis.com/oauth2/v3/token using JWT.
However - when I try my access token I generate myself I get back a forbidden response with the message 'Not authorized to view access private'.
I am pretty stumped - my only guess is that my service account configured in google developers console doesn't actually have access to my personal google stuff like google+ photos. When I look in there I can see the OAuth playground has access. How do I give my app access - and do I need to in this scenario?
Thanks in advance,
Robert
"my only guess is that my service account configured in google developers console doesn't actually have access to my personal google stuff".
Totally correct.
I guess I see 2-3 questions per month on SO where people have made the false assumption that a Service Account is some kind of proxy to their Google Account. It isn't. It's a completely new and independent account.
The two approaches you can take are:-
Share the items to the Service Account so it has permission to access them.
Give your app direct access to your Picassa account. See How do I authorise an app (web or installed) without user intervention? (canonical ?) for the steps involved.
Dropbox,How can I get the information of current login user in c#.
like username,email address of desktop dropbox client.
Please help
The Dropbox API offers account information via the /account/info endpoint:
https://www.dropbox.com/developers/core/docs#account-info
The documentation there also covers which pieces of information are available.
Dropbox doesn't offer an official C# SDK, so you can either use the HTTP endpoint above directly, or use a third party library. There are some listed here:
https://www.dropbox.com/developers/core/sdks/other
Is the Google Logs (Java) API only for querying logs of the GAE application where it is called from or can it be used more broadly for querying logs for all GAE applications that belong to the same account?
And it the second is not possible, does Google provide an API for retrieving status information (e.g. logs) about all applications under one account?
What I'd like to do is call such an API at regular intervals to ask e.g. if any recent HTTP requests resulted in errors: this would give a quick dashboard summary based on a subset of information (also) presented in the Google Developers Console.
As far as I know this isn't possible. But, you can download logs using appcfg (for any app) - maybe that is an option?