Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script type="text/javascript">
- $(function(){
- var Oauth = {};
- Oauth = {
- init:function(){
- var now = this;
- this.redirect();
- this.get_accessToken();
- },
- redirect : function(){
- var auth_url ="https://api.weibo.com/oauth2/authorize?client_id=";
- var auth_url_end = "&response_type=token&redirect_uri=http://www.baidu.com";
- var client_id = 965700781,redirect_uri;
- var url = auth_url + client_id + auth_url_end;
- window.window.location.href= url;
- },
- get_accessToken : function(){
- $(window).onUnload(function(){
- //var hash = document.location.hash.substring(1);
- alert("ss");
- });
- }
- }
- Oauth.init();
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment