Need to see if your shared folder is taking up space on your dropbox 👨‍💻? Find out how to check here.

Forum Discussion

toki4004's avatar
toki4004
Helpful | Level 5
3 years ago
Solved

Error: "request body: id... did not match pattern"

I am trying to get contents of a text file via 

https://api.dropboxapi.com/2/file_requests/get

and I get this error: 

"Error in call to API function "file_requests/get": request body: id: 'id:Jc0ALBXAshIAAAAAAAB3tw' did not match pattern '[-_0-9a-zA-Z]+'"


Here is my relevant code:

 

 

 

    $fields = array(
        "id" => "id:Jc0ALBXAshIAAAAAAAB3tw" );

    curl_setopt( $ch, CURLOPT_POSTFIELDS, json_encode( $fields ) );
    curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
    curl_setopt( $ch, CURLOPT_CUSTOMREQUEST, "POST" );
    curl_setopt( $ch, CURLOPT_HTTPHEADER, array( 'Authorization: Bearer ' . $auth_token, 'Content-Type: application/json' ) );
    curl_setopt( $ch, CURLOPT_URL, 'https://api.dropboxapi.com/2/file_requests/get' );

 

 


I got the file id from another api request, so it should exist. What am I doing wrong?

 

  • Hi toki4004,

    To get content of any file, you need to download it, not something else. 🙂

    Something more: as seems you're messing 2 different things - file and file request! File request is pseudo object representing your (or your app' user) intention to get file from somebody else, not the file itself. Getting such object means to get the pseudo object description, not any file that may be received while using this request - multiple files could be received with single request. File request has its own id with its own format that differs from file id format, of course. That where your error is coming from. 😉

    Hope this clarifies matter.

2 Replies

Replies have been turned off for this discussion
  • Здравко's avatar
    Здравко
    Legendary | Level 20
    3 years ago

    Hi toki4004,

    To get content of any file, you need to download it, not something else. 🙂

    Something more: as seems you're messing 2 different things - file and file request! File request is pseudo object representing your (or your app' user) intention to get file from somebody else, not the file itself. Getting such object means to get the pseudo object description, not any file that may be received while using this request - multiple files could be received with single request. File request has its own id with its own format that differs from file id format, of course. That where your error is coming from. 😉

    Hope this clarifies matter.

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.

The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!