Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Snapchat url scheme not working properly - camera opens but not profile

Tags:

ios

url-scheme

I am trying this http://handleopenurl.com/scheme/snapchat and the app opens and shows the camera instead of showing me the profile.

Is there another URL scheme for snapchat?

like image 343
Cody Raspien Avatar asked Mar 25 '14 10:03

Cody Raspien


3 Answers

This works right now: https://snapchat.com/add/username:

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://snapchat.com/add/username")));

like image 166
james Avatar answered Oct 20 '22 20:10

james


If you want to open snapchat application just then use :

snapchat://

If you want to add any user to friend list you can use this :

snapchat://add/snapchatUsername
like image 45
parth Avatar answered Oct 20 '22 19:10

parth


I've spent a fair amount of time looking into this, and I don't think there's any information out there right now about app URLs that do anything in Snapchat except just open the app. The ?u=username thing in the other answer and elsewhere on the Internet doesn't work (at least not for current versions of Snapchat).

like image 3
theram Avatar answered Oct 20 '22 19:10

theram