The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Override vBulleting login/registration functionality. invalid_redirect_url_x issue.
Hi,
I already have a website with login/registration functionality. I need to integrate vBulletin with the site which is created in java/jsp. I am using Mobile REST API to login/register/change password. It is working fine at POC level. I have vB 4.2 running on my machine at http://localhost/forum. I have created simple web application which is running at http://localhost:8090/ForumTest/index.jsp. I have a simple form created which is doing the login in vB. I am getting below error: Code:
{"session":{"dbsessionhash":"6cb315f385338a1d51b83e795daf87aa","userid":3},"response":{"errormessage":["invalid_redirect_url_x","http:\/\/localhost:8090\/ForumTest\/index.jsp?api=1&"]}} Another issue is i am not able to redirect to localhost/forum (my forum) and also not sure how to maintain the session. (that means user should not need to login explicitly for forums and should land on logged in page.) http://localhost:8090/ForumTest/index.jsp Code:
<body> <% ForumTest ft = new ForumTest(); ft.initRequest(); %> <script type="text/javascript"> function submit(){ document.loginForum.location="http://localhost/forum"; document.loginForum.submit();//form[loginForum] } </script> <form method="post" name="loginForum" action="http://localhost/forum/api.php?api_m=login_login"> <input type='hidden' name='api_m' value='login_login'/> <input type='hidden' name='api_c' value='<%=InitParams.getApiClientId()%>'/> <input type='hidden' name='api_s' value='<%=InitParams.getApiAccessToken()%>'/> <input type='hidden' name='api_sig' value='<%=ForumUtil.getLoginSignature()%>'/> <input type='hidden' name='vb_login_username' value='abcuser'/> <input type='hidden' name='vb_login_password' value='abcpassword'/> <a href="#" onclick="javascript:submit();">Login To Forum</a><br/> </form> </body> --------------- Added [DATE]1395227440[/DATE] at [TIME]1395227440[/TIME] --------------- I resolved that issue. Just added beloe code. Code:
<input type='hidden' name='url' value='http://localhost/forum'/> However issue about remained logged in session still exists. :-( |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|