Guest User

Untitled

a guest
Feb 24th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. return UrlFetchApp.fetch(
  2. "https://api.dropboxapi.com/2/files/list_folder",
  3. {
  4. "Content-Type" : "application/json",
  5. "method" : "post",
  6. "headers" : {
  7. "Authorization" : "Bearer (TOKEN)",
  8. "Content-Type" : "application/json"
  9. },
  10. "body" : {
  11. "path" : ""
  12. },
  13. "muteHttpExceptions" : false
  14. }
  15. );
Add Comment
Please, Sign In to add comment