Reputation: 257
For tumbler integration, I am using tumblerSDK for iOS. I have to post image on tumbler so I am referring PhotoPostApp example in SDK. There are some parameters that I need to fill up for the below code.
I got the OAuthConsumerKey and OAuthConsumerSecret but from where I can get OAuthToken and OAuthTokenSecret?
[TMAPIClient sharedInstance].OAuthConsumerKey = @"";
[TMAPIClient sharedInstance].OAuthConsumerSecret = @"";
[TMAPIClient sharedInstance].OAuthToken = @"";
[TMAPIClient sharedInstance].OAuthTokenSecret = @"";
Upvotes: 0
Views: 732
Reputation: 116
Upvotes: 2
Reputation: 8012
Calling authenticate:callback:
on [TMAPIClient sharedInstance]
will kick off the three-legged OAuth flow to retrieve the token and token secret.
Upvotes: 0