So you have an API wrapper?
I do, but in fact, you don't need any plugins to perform most tasks using facebook account.
Tony Kroos wrote:You can try to emulate it using WebBrowser outside the scene.
For example, create WebBrowser and navigate it to
https://www.facebook.com. You will get unauthorized login page.
Place a button (or use WebBrowser NavigateComplete event) and fill appropriate elements with your data:
- Code: Select all
.set user email
BrowserSetElement "WebBrowser1" "email" "your@email.com"
.set user password
BrowserSetElement "WebBrowser1" "pass" "password"
.tick remember me box
BrowserSetElement "WebBrowser1" "persistent" "1"
.submit login form
BrowserExecScript "WebBrowser1" "document.getElementById('login_form').submit();" "JScript"
If login was successful, you will enter your account main page. Then navigate to group pages and submit whatever messages you want. You may get element names and id's from html source.
Now you know all you need to navigate, get data to parse (BrowserExport), set data and submit forms to emulate whatever you may need with your facebook account. Go ahead.
P.S. Excuse me, I won't participate in further discussions on topic nor provide any solutions because of potential risk of facebook spamming, nb apps or even nb itself may get banned by AV, leading to numerous problems with false positives widely discussing on the forum, so do not ask or send pm. We all understand that any public solution for automating will be used for spamming/advertising by 99% of ppl.