hello I am trying to create HTTP web request base twitter account creator, its not working, I followed same steps which I recorded while doing it manually
Code:
Private Function DoRegistUser() Dim cookieJar = New CookieContainer()
Dim UrlRegister1 As String = "https://twitter.com/signup"
Dim UrlRegister As String = "https://twitter.com/account/create"
Dim postPara As String
Dim txtSignupPage As String = TwEasy.Helpers.HelpRequest.SendRequest(cookieJar, UrlRegister1, False, "", "")
Dim document = New HtmlDocument()
document.LoadHtml(txtSignupPage)
Dim node As HtmlNode = document.DocumentNode.SelectSingleNode("//input[@name='authenticity_token']")
Dim authenticity_token As String = node.Attributes("Value").Value
Dim paramatersCreate = New Dictionary(Of String, String)()
postPara = ("authenticity_token=" + authenticity_token + "&user%5Bname%5D=kirtast+amauajaop&user%5Bemail%5D=laioamaklklam90%40yahoo.com&user%5Buser_password%5D=abcd123456&user%5Bscreen_name%5D=mkaioaakjau90&user%5Bremember_me_on_signup%5D=1&user%5Buse_cookie_personalization%5D=1&asked_cookie_personalization_setting=1&context=&ad_id=&ad_ref=&user%5Bdiscoverable_by_email%5D=1&user%5Bsend_email_newsletter%5D=1")
txt = SendRequest(cookieJar, UrlRegister, True, postPara)
Return ""
End Function