Skip to content

Instantly share code, notes, and snippets.

View eakteam's full-sized avatar
🏠
Working from home

Emin Kokalari eakteam

🏠
Working from home
View GitHub Profile
@unwiredlabs
unwiredlabs / gist:9543100
Last active November 27, 2023 18:48
.NET C# API sample
///Contributed by Stuart Eastland of RightFile.com
public static void GetNearest(string key, string mcc, string mnc, string lac, string cid)
{
try
{
string url = "http://us1.unwiredlabs.com/v2/process.php";
var httpWebRequest = (HttpWebRequest)WebRequest.Create(url);
httpWebRequest.ContentType = "application/json; charset=utf-8";
httpWebRequest.Method = "POST";