Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@delmo99 this is how i get the updates. Assuming you are speaking of updated targets
public static List<string> GetProspects()
{
List<string> ids = new List<string>();
string response;
try
{
using (WebClient wc = new WebClient())
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!\"}";