I am making a bookmarklet, which calls a Google App Engine app. The GAE app uses login information, which I want to store in bookmarklet, so when user first clicks bookmarklet,it asks for login info, but from next time onwards it automatically supplies it.
标签:
bookmarklet
相关问题
- Possible to run Javascript from address bar (bookm
- Javascript bookmarklet stopped working in Firefox
- Create bookmarklet to fill form [closed]
- Capture keypress in Javascript (Google Docs)
- Create a Delicious Bookmarklet in Firefox using De
相关文章
- Capture keypress in Javascript (Google Docs)
- Create a Delicious Bookmarklet in Firefox using De
- Adding favicon to javascript Bookmarklet (uses win
- replacing a popup window URL with the same URL
- Can I detect whether a browser's Bookmarks too
- Making/finding html5 validator bookmarklet
- javascript prompt for password (i.e. *******)
- Bookmarklet Help: Creating a Find/Replace Bookmark
The difficulty of a bookmarklet directly storing data is that it can only store data in cookie or in localStore, both of which "belong" to whatever page it is currently on. That means it won't work again the next time you use it on a different page, and it also means the page you are on can access the data, which is generally very bad for security.
There are two basic ways your situation is generally handled. The two main ways are:
1.) The application used keeps the user logged in with a cookie. The login information is not stored in the cookie; only a session ID is. This is like when you return to many popular websites, you don't have to log in again. Very often these types of bookmarklets open a small popup for the user which contains a page from the app. If the user is not logged in, the app prompts the user to login first. The bookmarklet in fact knows nothing about being signed in or not.
2.) Each bookmarklet is custom created for each person. So my bookmarklet would be different than yours. The difference is simply that mine will contain my login info in the code, and yours will contain your login information in the code. In fact we would each have to login to the app first before we can get our own personalized bookmarklet.
Generally, option 1 is better and easier and more secure.
If I understand it correctly,this Might help you. http://ajaxian.com/archives/whats-in-a-windowname
It allows for storing data in windowname in JS. Allowing for access of up-to 2 MB of data (A lot more than cookies can hold) and I believe can be used across tabs...