We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

babydream's avatar
babydream
Helpful | Level 6
2 years ago

How do I extract the url from sharing_get_shared_links?

I am stuck in getting the url from sharing_get_shared_links?   Been trying all day with no success.  I had no issue with the create_link but that also returns a slew of data which it has the url but ...
  • babydream's avatar
    2 years ago

    I am using Python 3.11.   I finally figured out how to get to the url through trial and error.  Dropbox documentation on Python needs to be updated to explicitly state how the return values are processed.  Otherwise, it can be a nightmare.  I know you guys don't support language specifics on how to extract the parameter values but it would be nice to have this documented.  Thank you

     

     shared_link_metadata = sharing_get_shared_links(path=save_product_path)

            iterator = iter(shared_link_metadata.links)
            print(iterator)
            for item in iterator:
                shared_link = item.url