I want to forward my users to the Flickr app -if they have it of course- and if they don't to Flickr mobile. I want to make sure that they will see my page. I can do this with Facebook and Twitter by a link like twitter://... However, I don't know the link style of Flickr. Can someone help me. Thanks you!
相关问题
- Core Data lightweight migration crashes after App
- React Native Inline style for multiple Text in sin
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- How to get rid of border around and image used as
- Swift - hide pickerView after value selected
- How do you detect key up / key down events from a
- didBeginContact:(SKPhysicsContact *)contact not in
What you're thinking of is called a URL-Scheme. I trying to look up the info, but I think that the developers at Flickr didn't think this through. An example post of my search is right here.
It seems that Flickr only has the
flickr://
scheme, which opens the app, but not more than that. It's a shame.The new version has
flickr://photos/username/photoID
. You can either use the username or nsid. Both work.Currently, the way to solve this is to open the web URL. The website will redirect you to the app if it's installed.
More on this here: https://www.flickr.com/services/api/misc.urls.html
Example in Objective-C: