Skip to content

Instantly share code, notes, and snippets.

@flashsites
Created September 30, 2014 05:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flashsites/991bd125fd515f79682d to your computer and use it in GitHub Desktop.
Save flashsites/991bd125fd515f79682d to your computer and use it in GitHub Desktop.
Having massive trouble getting messages to work. Keeps saying not found when I execute the C# code below. Any advice?
wc.Headers[HttpRequestHeader.ContentType] = "application/json; charset=utf-8";
wc.Headers[HttpRequestHeader.UserAgent] = "Tinder Android Version 3.3.1";
wc.Headers.Add("X-Auth-Token", "Your Auth");
wc.Headers.Add("os-version", "19");
wc.Headers.Add("app-version", "762");
wc.Headers.Add("platform", "android");
string mesurl="https://api.gotinder.com/user/matches/";
mesurl+=result.person._id+" --data '{\"message\": \"Howdy!\"}";
response = wc.UploadString(mesurl, "{\"limit\":40}");
@flashsites
Copy link
Author

Having massive trouble getting messages to work. Keeps saying not found when I execute the C# code below. Any advice?

@deivid1
Copy link

deivid1 commented Sep 6, 2015

Hi man, did u achieve to send messages finally? I'm trying too but it's giving error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment