Each of which individually gives a result of {"status":"success"}
To double checked if it worked I reloaded the php file that utilized the most recent refresh token/the third refresh token listed above and output was {"errors":[{"id":"F7003","title":"Invalid OAuth token."}]} which I think makes sense since the OAuth token depends on the refresh token and the refresh token has been revoked/deleted.
!!!!!HOWEVER!!!!!
It produces the following:
The problem with this is that the url I used listed three scopes:
- WorkDrive.files.sharing.ALL
- WorkDrive.files.ALL
- WorkDrive.links.ALL
But it only lists information or permissions regarding sharing and NOTHING related to files and links. Why is that? Did I do something wrong? This link
https://workdrive.zoho.com/apidocs/v1/oauth2authentication/authorization-request mentions several query parameters one of which is scope and it says that you can provide multiple scopes by separating them using commas which is what I did. So I am confused.
Any help would be greatly appreciated.