File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ codebird-js - changelog
4
4
2.6.0 (not yet released)
5
5
+ Allow to get the supported API methods as array
6
6
- #79 Use POST for users/lookup and statuses/lookup, params may get too long for GET
7
+ - #81 Special oauth_ methods: Fix force_login parameter
7
8
8
9
2.5.0 (2014-06-23)
9
10
+ #24 Add README section about xAuth
Original file line number Diff line number Diff line change @@ -587,7 +587,7 @@ var Codebird = function () {
587
587
}
588
588
var url = _endpoint_oauth + "oauth/authenticate?oauth_token=" + _url ( _oauth_token ) ;
589
589
if ( params . force_login === true ) {
590
- url += "? force_login=1" ;
590
+ url += "& force_login=1" ;
591
591
if ( params . screen_name !== null ) {
592
592
url += "&screen_name=" + params . screen_name ;
593
593
}
@@ -613,7 +613,7 @@ var Codebird = function () {
613
613
}
614
614
var url = _endpoint_oauth + "oauth/authorize?oauth_token=" + _url ( _oauth_token ) ;
615
615
if ( params . force_login === true ) {
616
- url += "? force_login=1" ;
616
+ url += "& force_login=1" ;
617
617
if ( params . screen_name !== null ) {
618
618
url += "&screen_name=" + params . screen_name ;
619
619
}
You can’t perform that action at this time.
0 commit comments