-
Notifications
You must be signed in to change notification settings - Fork 54
/
Constants.cs
22 lines (21 loc) · 929 Bytes
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
namespace InstagramPrivateScraper
{
public static class Constants
{
public const string PostUrl = "https://www.instagram.com/accounts/login/ajax/";
public const string GetUrl = "https://www.instagram.com/accounts/login/";
public const string ContentType = "application/x-www-form-urlencoded";
public const string UserAgent =
"Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36";
public const string Referer = "https://www.instagram.com/";
public const string title = "Instagram Private Scraper";
public const string author = "Arcanecfg / www.WastedWolf.com";
public const string separator = "+-------------------------------------------------+";
}
}