A complete Private Instagram API for .NET.
Support:
- Create new account with phone number and email.
- Login with Cookies.
- Edit Profile, change/remove profile picture.
- Upload album (videos and photos)
- Upload story (video/photo) to self story and direct thread
- Send...
More information
An implementation of the text search of Wikipedia
WikiSharp.Wiki wiki = new WikiSharp.Wiki();
var temp = await wiki.Search(textBox1.Text);
foreach (string a in temp.Values)
{
Console.writeLine(a);
}
}