Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

in my app I need to open a url by using

 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"urlstring"]];

after a certain process in the page how can i return to the app.(like facebook doing for safari authentication)

share|improve this question

2 Answers

You can't unless you also build the website part, then you can open your own app by calling the App custom URL scheme, wich you will have to add your self to info.plist.

share|improve this answer
what to do in the website to return to app – Johnykutty Aug 1 '12 at 4:26
Call the app custom URL, like My-App:// or something – rckoenes Aug 1 '12 at 6:32

What the Facebook app does is it registers fb:// URLs to redirect to it. Then it sends you to a special link at facebook.com that redirects to an fb:// link while passing some information along (a token or whatever). If you open Safari and type "fb://" into the URL bar you'll get sent to the Facebook app. rckoenes' answer shows how to register URLs to do that, but the part about returning to your app is up to your website (you have to write that redirect page).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.