Franky
Franky

Reputation: 1153

Tumblr URL Scheme

What is the iOS URL scheme for opening the Tumblr App to a specific blog url?

Seem to not be able to find this any where.

My guess is its something

tumblr://

Anyone know?

Upvotes: 3

Views: 2885

Answers (3)

Ryan
Ryan

Reputation: 24083

The following tips from this page worked for me:

Tumblr for iOS exposes actions using the x-callback-url specification. The TMTumblrAppClient class merely provides a convenient interface on top of the following URLs:

  • tumblr://x-callback-url/dashboard
  • tumblr://x-callback-url/tag?tag=gif
  • tumblr://x-callback-url/blog?blogName=bryan
  • tumblr://x-callback-url/blog?blogName=bryan&postID=43724939726

The post URLs below also support x-success and x-cancel callback parameters:

  • tumblr://x-callback-url/text?title=Title&body=Body&tags=gif&tags=lol
  • tumblr://x-callback-url/quote?quote=Quote&source=Source
  • tumblr://x-callback-url/link?title=Bryan&url=bryan.io&description=Website
  • tumblr://x-callback-url/chat?title=Title&body=Body&tags=gif&tags=lol

Here is what worked: <a href="tumblr://x-callback-url/blog?blogName=luxury-dream-homes&postID=173176271099">test this link</a>

See also: https://engineering.tumblr.com/post/48855322178/tumblr-sdk-updates and https://github.com/tumblr/TMTumblrSDK#url-schemes

Upvotes: 0

Omkar Jadhav
Omkar Jadhav

Reputation: 504

This :

tumblr://x-callback-url/blog?blogName=[blogName]

If the blog is http://myblog.tumblr.com then the URL Scheme will be :

tumblr://x-callback-url/blog?blogName=myblog

Upvotes: 1

Midhun MP
Midhun MP

Reputation: 107221

iTunes link:

http://itunes.apple.com/us/app/tumblr/id305343404?mt=8

Native application URL string example:

tumblr:///link?url=yourURL.com/tumblr/iphone&name=Midhun

Extended example:

tumblr:///link?url=yourURL.com/tumblr/iphone&name=Midhun tumblr:///text?title=Hello&body=World

Upvotes: 1

Related Questions