You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My first authentication attempt was without the app installed and everything worked fine. I figured if I had the app installed it would authenticate using that a la facebook.
I don't know of a way to detect if an app exists on the iOS device or not (i.e. when choosing between launching web or redirecting to an app) so this may not be possible.
Is the current state of authentication web-only?
The text was updated successfully, but these errors were encountered:
We do not currently offer authentication through the Tumblr app for iOS, though this is definitely something I would love to enable in the future. Currently OAuth requires going to the web browser and getting kicked back into your application, which should be handled seamlessly for you using the SDK.
You can currently check if the Tumblr app is installed by doing:
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"tumblr://"]]) {
NSLog(@"Tumblr is installed");
}
This is made easier through a convenience method included in the SDK:
TMTumblrAppClient *client = [TMTumblrAppClient client];
if (![client isAppInstalled]) {
NSLog(@"Tumblr is installed");
}
My first authentication attempt was without the app installed and everything worked fine. I figured if I had the app installed it would authenticate using that a la facebook.
I don't know of a way to detect if an app exists on the iOS device or not (i.e. when choosing between launching web or redirecting to an app) so this may not be possible.
Is the current state of authentication web-only?
The text was updated successfully, but these errors were encountered: