I was using Django, but i am not successful for signin with Twitter,
So I think maybe should use Javascript to sign in.
How do I sign in using Javascript?
I was using Django, but i am not successful for signin with Twitter,
So I think maybe should use Javascript to sign in.
How do I sign in using Javascript?
You can use Twitter's @Anywhere to let users sign in to their account via JavaScript. Look here for example:
http://dev.twitter.com/anywhere/begin#login-signup
Once the user is logged in, you can check their login state both from client and from server. On client, just use their provided function, and on server, you can validate the cookie. It is also described in that page.