mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-11 04:48:00 +03:00
42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
:: Test url +https://api.dropboxapi.com/2/users/get_current_account &json ~
|
|
::
|
|
:::: /hoon/dropboxapi/com/sec
|
|
::
|
|
/+ oauth2
|
|
::
|
|
::::
|
|
::
|
|
|%
|
|
++ dialog-url 'https://www.dropbox.com/1/oauth2/authorize?response_type=code'
|
|
++ exchange-url 'https://api.dropboxapi.com/1/oauth2/token'
|
|
--
|
|
::
|
|
::::
|
|
::
|
|
|_ {bal/(bale:eyre keys:oauth2) tok/token:oauth2}
|
|
:: ++aut is a "standard oauth2" core, which implements the
|
|
:: most common handling of oauth2 semantics. see lib/oauth2 for more details,
|
|
:: and examples at the bottom of the file.
|
|
++ aut (~(standard oauth2 bal tok) . |=(tok/token:oauth2 +>(tok tok)))
|
|
++ filter-request (out-add-header:aut scope=~ dialog-url)
|
|
::
|
|
++ receive-auth-query-string (in-code-to-token:aut exchange-url)
|
|
++ receive-auth-response bak-save-token:aut
|
|
--
|
|
:: create a developer app on https://www.dropbox.com/developers-v1/apps to get a
|
|
:: client id and secret.
|
|
|
|
:: Be sure to be on https://localhost:8443 and to have registered
|
|
:: 'http://localhost:8443/~/ac/dropboxapi.com/~./in' as the redirect URI.
|
|
:: (If unable to change port number of ship, change the redirect URI port in %eyre)
|
|
|
|
:: |init-oauth2 |init-oauth2 /com/dropbox
|
|
|
|
:: Enter this sample command to show your user info:
|
|
:: +https://api.dropboxapi.com/2/users/get_current_account &json ~
|
|
|
|
:: Before you receive the response, you'll have to click on the link in the
|
|
:: dojo to authenticate yourself.
|
|
|
|
:: You should receive a response listing the contents of that directory.
|