0
votes
2answers
65 views

Facebook Access Token - Force Expiration for Test

Is it possible to force a Facebook access token to expire in the new 3.2 Facebook SDK? I need to test the auth logic in my iOS app. I know this has been asked in the past.. but all answers I have ...
0
votes
2answers
104 views

Not able to handle the session properly

I'm using Xcode 4.3.1 I use the below code to get the Facebook access token. In Appdelegate: facebook=[[Facebook alloc]initWithAppId:appid andDelegate:first]; NSUserDefaults *defaults = ...
1
vote
1answer
1k views

Display Facebook News Feed in iPhone app for a Facebook Business Page

BACKGROUND: There is a publicly available Facebook business page, I can see the entire page and the Facebook news feed in my web browser, without actually being logged into my Facebook account. So ...
0
votes
0answers
123 views

Use a Facebook access token in iPhone app to log the user in in webview

Is there a way to use a facebook access token that's taken from the FB SDK for iOS, and use it to "log them in" so they can view postings and other stuff inside a UIWebView? I know I can get the data ...
0
votes
1answer
867 views

Facebook access tokens obtained without single sing-on cannot be extended using iOS SDK

I have started to integrate Facebook SDK into my iPhone project. I have no problem on devices with multitasking using SSO. The received access token is long lived and I can extend it by calling the ...
0
votes
2answers
1k views

Facebook authentication error - The operation couldn’t be completed

I have an option in my game for users to post an achievement to their wall. If they are logged in, i.e. their token is still active, it works fine. However, if they need to renew their token, the app ...
0
votes
1answer
688 views

iOS: How to save, get access token from foursquare

How can I get the access token from a foursquare request in cocoa? I am accessing this authentication to get the token from foursquare: ...
0
votes
1answer
821 views

how to get access token without any login?

In my iPhone app I want to read news feed from public Facebook page but I don't want in the beginning that the user has log in facebook to see wall of page. I try to pass access_token (in url to graph ...
1
vote
2answers
179 views

Facebook token not having “|” as delimiter anymore? Cause of OAuth2?

I am developing an IM client for iPhone, which will have support for an FB account as well. I am using facebook-ios-sdk for getting auth token. But whatever token I fetch, it does not contain any "|" ...
1
vote
0answers
265 views

ASI request app with access token best practice, design pattern

I work with an app that interacts with the server on every screen. I do not know before making the request if my token has expired, so sometimes they end up being rejected. In the meantime other ...
0
votes
1answer
1k views

Saving Facebook access_token in NSUserDefaults on iOS

iOS beginner here. I'm using the following code to save my facebook accessToken and expirationDate in NSUserDefaults: facebook = [[Facebook alloc] initWithAppId:@"225083222506272"]; [facebook ...
3
votes
4answers
7k views

How to get a Facebook access token on iOS

iOS beginner here. I have the following code: [facebook authorize:nil delegate:self]; NSString *string1=[facebook accessToken]; NSLog(string1); The log shows: ...
0
votes
1answer
324 views

multiple twitter login MGTwitterEngine OAuth HELP

my problem is that i dont know what information needs to be stored for each user and when i've got the information, where do i need to change that information so that my app knows it's changed user. i ...
0
votes
1answer
1k views

OAuth access token request failing (NSErrorFailingURLStringKey)

I have the following steps completed in the OAuth process: 1) Request token 2) Authorize token 3) Receive PIN number What I can't get to work is getting the access token with the PIN I receive. It ...