I am new to access with DropBox Api (see https://www.dropbox.com/developers-v1/core/docs#oauth2-methods ). Now the problem is rocking me -
1) I get access_token successfully. 2) I want to view user information by requesting " https://api.dropboxapi.com/1/account/info ". However, the result:
{"error_description": "No auth function available for given request", "error": "invalid_request"}
It seems that I should provide the address to make sure that I am already authenticated. But how? I did not see anything in the Documents ...? Anywhere? Thanks
The API uses OAuth 2, so you will want to Bearer ACCESSTOKEN " Authorization " header with the value " Bearer ACCESSTOKEN ", where ACCESSTOKEN is the access token obtained through the OAuth process.
Bearer ACCESSTOKEN
Authorization
Source: https://habr.com/ru/post/1233302/More articles:Why doesn't my while loop stop? - pythonReturns the value of a single cell from a Pandas DataFrame - pythonCannot install Android Studio from 1.3.0 to 1.4.0. - androidBreakpoint cannot be deleted in a C # project for anything other than .NET 3.5 - c #secure cookies node.js + Heroku + CloudFlare - node.jsMake numpy an upper triangular matrix padded with Nan instead of zero - pythonExpress session cookie is not sent on descents with https and safe flag - node.jsHow to draw circles around a circular path using D3js - javascriptAuthentication with Google OpenOAuthProvider - asp.netConfigure nix-shell to use a shell other than Bash? - shellAll Articles