Skip to content

Instantly share code, notes, and snippets.

@danielvlopes
Last active November 1, 2016 09:41
Show Gist options
  • Save danielvlopes/21b5936d94d11d36f957271103232dd9 to your computer and use it in GitHub Desktop.
Save danielvlopes/21b5936d94d11d36f957271103232dd9 to your computer and use it in GitHub Desktop.
Uri uri = new Uri.Builder()
.scheme("https")
.authority("ifttt.com")
.appendPath("applets")
.appendPath("_YOUR_APPLET_ID_")
.appendPath("embed")
.appendQuery("redirect_uri", "yourscheme://yourhost/yourpath")
.build();
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
activity.startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment