Bot-Factory 602 Posted August 28, 2016 Report Share Posted August 28, 2016 aymen, is http set header still working well? today i use http set header to login to wordpress and when i see with fiddler. the header not work.. this is my code: plugin command("HTTP post.dll", "http set headers", "Cookie", "PHPSESSID=lubkq31cvh9clt65pv*****; wordpress_test_cookie=WP+Cookie+check") set(#LoginWPPost,$plugin function("HTTP post.dll", "$http post", "http://***.com/wp-login.php", "log=***&pwd=*****&wp-submit=Log+Masuk&redirect_to=http%3A%2F%2F***.com%2Fwp-admin%2F&testcookie=1", $plugin function("HTTP post.dll", "$http useragent string", "Firefox 27.0 Win7 64-bit"), "http://***.com/wp-login.php", "", ""),"Global") and you can see the fiddler result:set header http post not work.png see, the header not show in fiddler result. please fixing this ... i really need this feature for my project. thx. Cookies are not managed via the header command. There are special cookie commands and functions in the plugin.Please take a look at all the different options. Example:plugin command("HTTP post.dll", "http cookies string", "")plugin command("HTTP post.dll", "http add cookie", "", "", "", "", "") cheersDan Quote Link to post Share on other sites
flying_dutchman 0 Posted August 29, 2016 Report Share Posted August 29, 2016 Cookies are not managed via the header command. There are special cookie commands and functions in the plugin.Please take a look at all the different options. Example:plugin command("HTTP post.dll", "http cookies string", "")plugin command("HTTP post.dll", "http add cookie", "", "", "", "", "") cheersDan dan, thx for your reply. i have try the options but still not work. the result in fiddler is same. the cookie:***** is not showdo you have another suggestion? Quote Link to post Share on other sites
boutmine 0 Posted September 8, 2016 Report Share Posted September 8, 2016 Hi, Multi part post "=" problem valuename = codevalue = xhs6=ewr post data, code=xhs6=ewr http://image.prntscr.com/image/0b879e240a2f4fe4b52544be3e4e0534.png Help me?Thank you.I'm having this same issue as well. Quote Link to post Share on other sites
flying_dutchman 0 Posted October 21, 2016 Report Share Posted October 21, 2016 (edited) hi aymen, xpath parser is not working now. can you check and fixing please? this is my script: set(#HttpDetailProduct,$plugin function("HTTP post.dll", "$http get", "https://www.tokopedia.com/f-a-store89/tas-selempang-tas-paha-tas-pinggang-pria-1btc-150", $plugin function("HTTP post.dll", "$http useragent string", "Chrome 32.0 Win7 64-bit"), "https://www.tokopedia.com", "", ""),"Global") alert($plugin function("HTTP post.dll", "$xpath exists", #HttpDetailProduct, "//span[@itemprop=\'price\']")) alert($plugin function("HTTP post.dll", "$xpath parser", #HttpDetailProduct, "//span[@itemprop=\'price\']", "innerText", "HTML")) note: my HTTP POST plugin version is 2.6.0.0 Edited October 21, 2016 by flying_dutchman Quote Link to post Share on other sites
Bot-Factory 602 Posted October 30, 2016 Report Share Posted October 30, 2016 hi aymen, xpath parser is not working now. can you check and fixing please? this is my script: set(#HttpDetailProduct,$plugin function("HTTP post.dll", "$http get", "https://www.tokopedia.com/f-a-store89/tas-selempang-tas-paha-tas-pinggang-pria-1btc-150", $plugin function("HTTP post.dll", "$http useragent string", "Chrome 32.0 Win7 64-bit"), "https://www.tokopedia.com", "", ""),"Global") alert($plugin function("HTTP post.dll", "$xpath exists", #HttpDetailProduct, "//span[@itemprop=\'price\']")) alert($plugin function("HTTP post.dll", "$xpath parser", #HttpDetailProduct, "//span[@itemprop=\'price\']", "innerText", "HTML")) note: my HTTP POST plugin version is 2.6.0.0 I think it's more related to the HTTPS Site. The current version doesn't support all the latest SSL algorythms.So you should check if the html data is really downloaded and available in that variable. You can also use Fiddler to trace the http request and check if there are any errors. PS: Aymen has a fix for that SSL issue already. BUt I'm not sure if he made it available to everyone already. RegardsDan Quote Link to post Share on other sites
Bot-Factory 602 Posted November 1, 2016 Report Share Posted November 1, 2016 Http Plugin Video Tutorials are now FREE: http://www.bot-factory.com Quote Link to post Share on other sites
jamesfar 15 Posted November 1, 2016 Report Share Posted November 1, 2016 Http Plugin Video Tutorials are now FREE:http://www.bot-factory.com Is that the same package as the paid video tutorials we paid? Any reason why you make it free? Quote Link to post Share on other sites
Bot-Factory 602 Posted November 1, 2016 Report Share Posted November 1, 2016 Is that the same package as the paid video tutorials we paid? Any reason why you make it free?Yes, that's the old Http Plugin Tutorials Series. There are many reasons why I'm doing this, but I don't want to share my business decisions publicly.But you can always email me or send a support ticket if you have specific questions and want to discuss something. Thanks a lot for your understanding. Kindest regardsDan Quote Link to post Share on other sites
jamesfar 15 Posted November 1, 2016 Report Share Posted November 1, 2016 Yes, that's the old Http Plugin Tutorials Series. There are many reasons why I'm doing this, but I don't want to share my business decisions publicly.But you can always email me or send a support ticket if you have specific questions and want to discuss something. Thanks a lot for your understanding. Kindest regardsDan I am asking because previously we are paying for that. Sometimes it feels strange 1 Quote Link to post Share on other sites
sbm128 12 Posted November 25, 2016 Report Share Posted November 25, 2016 having an issue with the "Regex to list" function... This regex is fine:([a-zA-Z0-9]){16} parses as should, pulls the info i need off the page, BUT i need it to only pick up the 16 digit string ({16}) IF it has no whitespaces in the grouping. so i tried using([a-zA-Z0-9\S]){16} which after i hit the "OK" button to stop editing, it becomes"([a-zA-Z0-9\S])\{16\}" as you can see, there are several "\" that insert themselves into the forumla once OK'd. I tried doing it in the code view mode, but ran into a plugin error. It wont seem to accept the code I want it to without inserting a bunch of \ into it. I've tried wrapping the string manually in quotations, as well as used the uBot built in quotation wrappers to no avail. help? Quote Link to post Share on other sites
boutmine 0 Posted December 8, 2016 Report Share Posted December 8, 2016 Aymen is no longer providing support for http post plugin time to move on if any errors or problems are wrong. Quote Link to post Share on other sites
HelloInsomnia 1103 Posted December 8, 2016 Report Share Posted December 8, 2016 having an issue with the "Regex to list" function... This regex is fine:([a-zA-Z0-9]){16} parses as should, pulls the info i need off the page, BUT i need it to only pick up the 16 digit string ({16}) IF it has no whitespaces in the grouping. so i tried using([a-zA-Z0-9\S]){16} which after i hit the "OK" button to stop editing, it becomes"([a-zA-Z0-9\S])\{16\}" as you can see, there are several "\" that insert themselves into the forumla once OK'd. I tried doing it in the code view mode, but ran into a plugin error. It wont seem to accept the code I want it to without inserting a bunch of \ into it. I've tried wrapping the string manually in quotations, as well as used the uBot built in quotation wrappers to no avail. help? Ubot has always been weird about that specific part of regex, try this as a workaround: ([a-zA-Z0-9\S]){16,16} Aymen is no longer providing support for http post plugin time to move on if any errors or problems are wrong. There was an update in October for a plugin that has been out for nearly 4 years and doesn't really need many updates. If you have a question feel free to ask here and maybe somebody can help. Quote Link to post Share on other sites
Bot-Factory 602 Posted December 18, 2016 Report Share Posted December 18, 2016 There was an update in October for a plugin that has been out for nearly 4 years and doesn't really need many updates. If you have a question feel free to ask here and maybe somebody can help.Aymen also has a private update for a HTTPS issue. Because some websites don't allow old SSL algorithms anymore. And the "old" plugin version didn't support that.But I'm not sure if he already released the HTTPS / SSL update. So if you get weird error messages when you execute a get or post request against an SSL encrypted site (HTTPS), then ask him for the updated version.Dan Quote Link to post Share on other sites
wiseguys 3 Posted December 29, 2016 Report Share Posted December 29, 2016 Is there any way we can use additional HTTP methods such as PUT or DELETE instead of just GET and POST ? Would help a lot in a mobile environment... Quote Link to post Share on other sites
Marton 48 Posted February 26, 2017 Report Share Posted February 26, 2017 Aymen also has a private update for a HTTPS issue. Because some websites don't allow old SSL algorithms anymore. And the "old" plugin version didn't support that.But I'm not sure if he already released the HTTPS / SSL update. So if you get weird error messages when you execute a get or post request against an SSL encrypted site (HTTPS), then ask him for the updated version.Dan Do you know if this update been added to version 2.6.2v2 ? Thanks,Marton Quote Link to post Share on other sites
db00 5 Posted March 10, 2017 Report Share Posted March 10, 2017 Anyone here knows how to send = in Aymen Http plugin with Upload? Works with post as a parameter, but with upload it won't work tried encoding it, decoding it (%3D)... the plugin doesn't want to send = , and I need it for a token Ty Quote Link to post Share on other sites
BeerNut 25 Posted March 22, 2017 Report Share Posted March 22, 2017 Can anyone post a sample code of a working http get request for a single page at Zomato? Something like this page https://www.zomato.com/sydney/koi-dessert-bar-chippendale I have been trying to access it with http get but no matter what it always times out. I have sniffed out the headers from Chrome and placed them in bot but it didn't help. Setting the cookie from Chrome also didn't result in getting a response back. I am able to access the site from normal browsers, exbrowser, and Scrapy in python. Only http get requests time out. Below is my sample code that doesn't seem to work. plugin command("HTTP post.dll", "http keep alive", "Yes") plugin command("HTTP post.dll", "http set headers", "Accept", "text/html,application/xhtml xml,application/xml;q=0.9,image/webp,*/*;q=0.8") plugin command("HTTP post.dll", "http set headers", "Accept-Encoding", "gzip, deflate, sdch, br") plugin command("HTTP post.dll", "http set headers", "Accept-Language", "en-US,en;q=0.8") plugin command("HTTP post.dll", "http cookies string", "zl=en; fbtrack=c9b87b62a944cb44d3f4b6907e9eefd3; dpr=1; PHPSESSID=75152101f053c75c9f91925738918d90a527a51f; fbcity=260; _ga=GA1.2.947294597.1478203272; __utmx=141625785.FQnzc5UZQdSMS6ggKyLrqQ$0:NaN; __utmxx=141625785.FQnzc5UZQdSMS6ggKyLrqQ$0:1490151181:8035200; __jpuri=https://www.zomato.com/sydney/koi-dessert-bar-chippendale; ak_bmsc=EFE1155AFDF526C6D0FEF2BADDE722AE3CFE8FD05C5B00000CE7D158825F2E71~plPnHtUP9Eg7GL7FZBj6zyh2jTSyRjsCvRZyiAKUE2/lg9N8CiWhwGc0YJlVh84nQY6VoAqi/fkx0JupxPpfSYxhgXMuWchWw09s1CLhFtYIkFE5rNSdzykEMe7rca+ecfozjlmF/lBsb8imttQq4auYDhAgAQfJx+X7OdiiGtm8z10WicD1/hpHqnvToa+JTWcizNi6djP4gV+izhoGgF9g==") plugin command("HTTP post.dll", "http set headers", "Pragma", "akamai-x-cache-on, akamai-x-cache-remote-on, akamai-x-check-cacheable, akamai-x-get-cache-key, akamai-x-get-extracted-values, akamai-x-get-ssl-client-session-id, akamai-x-get-true-cache-key, akamai-x-serial-no, akamai-x-get-request-id,akamai-x-get-nonces,akamai-x-get-client-ip,akamai-x-feo-trace") plugin command("HTTP post.dll", "http set headers", "Upgrade-Insecure-Requests", 1) set(#soup,$plugin function("HTTP post.dll", "$http get", "https://www.zomato.com/sydney/koi-dessert-bar-chippendale", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "https://www.zomato.com/", "", ""),"Global") If anyone could point me in the right direction that would be an incredible help. Quote Link to post Share on other sites
myubotforumaccount 0 Posted March 29, 2017 Report Share Posted March 29, 2017 does http support unicode french and chinese now?<a href="https://www.amazon.com/Best-Sellers-Home-Kitchen-Décor-Products/zgbs/home-garden/1063278/ref=zg_bs_nav_hg_1_hg">HomeDécor</a> i can not get a href link like this anyone please help me, thanks Quote Link to post Share on other sites
kazmiwajahat 1 Posted April 15, 2017 Report Share Posted April 15, 2017 Just purchased. Please send me the plugin ASAP. Quote Link to post Share on other sites
luis carlos 94 Posted April 15, 2017 Report Share Posted April 15, 2017 Just purchased. Please send me the plugin ASAP.Contact the seller via support ticket. Quote Link to post Share on other sites
iamddr 12 Posted July 19, 2017 Report Share Posted July 19, 2017 paid&ticket sent Quote Link to post Share on other sites
iamddr 12 Posted July 20, 2017 Report Share Posted July 20, 2017 Have been waiting for 36+ hours after purchased, support ticket sent but dont have respond, cant contact Aymen via forum PM, any suggestion except refund? Quote Link to post Share on other sites
sunny9495 42 Posted July 20, 2017 Report Share Posted July 20, 2017 sent a mail to : aymenbnr@gmail.com he will respond in 24 hours.Have been waiting for 36+ hours after purchased, support ticket sent but dont have respond, cant contact Aymen via forum PM, any suggestion except refund? Quote Link to post Share on other sites
iamddr 12 Posted July 20, 2017 Report Share Posted July 20, 2017 sent a mail to : aymenbnr@gmail.com he will respond in 24 hours.Very big help! Thank you, sunny9495, I will send email asap Quote Link to post Share on other sites
ptlrc 2 Posted September 11, 2017 Report Share Posted September 11, 2017 i got an error with xmlrpc poster : Response from server does not contain valid XML i installed my website with bluehost, anybody know why? Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.