• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

使用htmlunit登录vbulletin论坛

用户头像
it1352
帮助1

问题说明

我正在尝试使用htmlunit登录vbulletins论坛

i am trying to login vbulletins forum using htmlunit

我可以连接到我的论坛并设置我的用户名和密码,但是当单击登录按钮时,我无法登录我的用户

i can connect to my forum and set my username and password but when click in login button i can not login into my user

这是我的代码:

try{

        final WebClient webClient = new WebClient();

        webClient.getOptions().setJavaScriptEnabled(false);
        webClient.getOptions().setCssEnabled(false);        



        final HtmlPage page1 =(HtmlPage) webClient.getPage("http://mysite.com/forum.php");

        final HtmlForm form1 = (HtmlForm) page1.getElementById("navbar_loginform"); 

        final HtmlSubmitInput button= form1.getInputByValue("login"); 
        final HtmlTextInput username = form1.getElementById("navbar_username");

        final HtmlTextInput password = form1.getElementById("navbar_password_hint");


        username.setValueAttribute(txtusername.getText());
        password.setValueAttribute(String.valueOf(txtpasswd.getPassword()));


       final HtmlPage page2 =button.click();


        webClient.closeAllWindows();

    }
    catch(Exception x)
    {
        JOptionPane.showMessageDialog(null, "can not connect");
    }

当我得到page2的网址时,结果就像 "http://mysite.com/login.php?s=36401731df153421f06a8497b3b859df&do=登录"

when i get url of page2 result is like "http://mysite.com/login.php?s=36401731df153421f06a8497b3b859df&do=login"

请帮助我解决我的问题,谢谢

please help me to fix my problem , thank you

正确答案

#1

我在以下标记中设置了这些值,然后可以登录到我的用户:

I set these values in the below tags and I could login to my user:

input type="hidden" name="vb_login_md5password"
input type="hidden" name="vb_login_md5password_utf"

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfjeik
系列文章
更多 icon
同类精品
更多 icon
继续加载