Reputation: 937
i am using twitter + oauth for twitter integration in iphone. when i run the app. i got message such as "sorry that page doesn't exist!" even though i am using following things.
self.requestTokenURL = [NSURL URLWithString: @"http://twitter.com/oauth/request_token"]; self.accessTokenURL = [NSURL URLWithString: @"http://twitter.com/oauth/access_token"]; self.authorizeURL = [NSURL URLWithString: @"http://twitter.com/oauth/authorize"];
can Anybody has Solution??
Thanks in Advance.
Upvotes: 0
Views: 246
Reputation: 22904
You need to use
You are missing the third level api domain in your URLs.
Upvotes: 2