Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
bhuwan
7 years agoExplorer | Level 3
create_shared_link_with_settings responding conflict 409
Hi,
create_shared_link_with_settings responding 409 conflict error but it is passing data in exception. So I try to this
$client = new Client();
$parameters = [
"path" => "id:".$imageId,
];
$url = '';
try{
$response = $client->request('POST', 'https://api.dropboxapi.com/2/sharing/create_shared_link_with_settings',
[
'headers'=>
[
'Authorization'=>'Bearer '.$acc_token,
'Content-Type' => 'application/json',
],
'body'=>json_encode($parameters)
]);
}catch(ClientException $exception){
$url = json_decode($exception->getResponse()->getBody(), true)['error']['shared_link_already_exists']['metadata']['url'];
}
return $url;
When I catch exception I am able to get the URL as needed. Please advise me how I can avoid conflict error.
The /2/sharing/create_shared_link_with_settings endpoint will always return a 'shared_link_already_exists' error if a shared link for the requested item already exists. Catching and handling the exception is the proper way to accommodate that. (Note that there are other possible error types as well. You can find them listed in the documentation.)
If you want to avoid that though, you can first call /2/sharing/list_shared_links to check for an existing link. (You'll probably want to use 'direct_only:true' in this case.)
1 Reply
Replies have been turned off for this discussion
- Greg-DB7 years ago
Dropbox Community Moderator
The /2/sharing/create_shared_link_with_settings endpoint will always return a 'shared_link_already_exists' error if a shared link for the requested item already exists. Catching and handling the exception is the proper way to accommodate that. (Note that there are other possible error types as well. You can find them listed in the documentation.)
If you want to avoid that though, you can first call /2/sharing/list_shared_links to check for an existing link. (You'll probably want to use 'direct_only:true' in this case.)
About 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!