Jump to content
UBot Underground

Login To Soundcloud Help. Anyone?


Recommended Posts

Guys, anyone can help me with Soundcloud login ? There is some protection which does not permit me to proceed when I submit the form with ubot+exbrowser, but when i do it on hand on exbrowser there is no such issue. Problem is that when i hit "submit" after filling username/password, than instead of being logged in, I am forwarded to "Log in" form again.
Here is the code:

define SoundCloud Login {
    purpose("Loging to SoundCloud...")
    plugin command("ExBrowser.dll", "ExBrowser Navigate", "https://soundcloud.com/signin")
    plugin command("ExBrowser.dll", "ExBrowser Wait For Dom Ready", 10)
    plugin command("ExBrowser.dll", "ExBrowser Click", "x://*[@name=\"username\"]")
    plugin command("ExBrowser.dll", "ExBrowser Type Text (Human Delay)", "x://*[@name=\"username\"]", #sounduser, 100, 250)
    plugin command("ExBrowser.dll", "ExBrowser Click", "x://button[text()=\"Continue\"]")
    plugin command("ExBrowser.dll", "ExBrowser Click", "x://*[@name=\"password\"]")
    plugin command("ExBrowser.dll", "ExBrowser Type Text (Human Delay)", "x://*[@name=\"password\"]", #soundpass, 100, 250)
    wait(1)
    plugin command("ExBrowser.dll", "ExBrowser Double Click", "x://button[text()=\"Sign in\"]")
    wait(2)
    plugin command("ExBrowser.dll", "ExBrowser Click", "x://button[text()=\"Continue\"]")
    plugin command("ExBrowser.dll", "ExBrowser Click", "x://button[text()=\"Sign in\"]")
    wait(3)
    plugin command("ExBrowser.dll", "ExBrowser Wait For Dom Ready", 15)
}
plugin command("ExBrowser.dll", "ExBrowser Launcher", "Chrome", "", "")
SoundCloud Login()

Change #sounduser and #soundpass with own :)

If at least can give me a tip what i need to look for?

Link to post
Share on other sites

 

After entering password use this command

plugin command("ExBrowser.dll", "ExBrowser Send Special Key", "x://*[@name=\"password\"]", "Enter", "")

 It is working fine now. Thanks a lot bud!

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...