Click here to Skip to main content
15,896,727 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
am not able to link password and userid to the imagebutton ...

What I have tried:

<!DOCTYPE html>
<html>
<body>





<img src="C:\Users\Admin\Desktop\images.png" alt="twitter" style="width:"72";height:"41";">



<script>
function loginForm() {
document.myform.action = "http://twitter.com/wp-content/uploads/code/twitter-LoginPage.html";
document.myform.submit();
}
</script>
</HEAD>
<BODY >
<FORM NAME="myform" METHOD="POST">
<INPUT TYPE="hidden" NAME="email" VALUE="himanshusantoki00@gmail.com">
<INPUT TYPE="hidden" NAME="password" VALUE="Jskhimu@00">
</FORM>
</body>
</html>
Posted
Updated 16-Jul-16 20:03pm
v3

1 solution

Hi,

The access to any social network site is not just passing the credentials & get access to the site, you have experienced in many web sites where once you provide access for the Tweeter kind of sites after that whenever you click it does not require any authentication and even you change password of your Tweeter account, the link still works as before.

This concept of authentication uses the Token based access, the user will authenticate only one using actual credentials and which in turn the social network provide the "Access Token" and the web site make use of these access token and can use to access the social sites, web site can read your tweets or post any message on behalf of you all based on the access you provided during first time authentication.

For tweeter authentication, read this below link for various access level you required.

Let me know if you need more details on this access.

Access Token Link


[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900