Upgrade to 4.7 for linkedin oauth2 provider#2
Open
eucuepo wants to merge 126 commits intojolivares:masterfrom
Open
Upgrade to 4.7 for linkedin oauth2 provider#2eucuepo wants to merge 126 commits intojolivares:masterfrom
eucuepo wants to merge 126 commits intojolivares:masterfrom
Conversation
Added log4j file
1) The profile and contact URLs for Flikr have changed 2) Provider Id was not set.
Please accept this plugin.
At the plugin in the In the provider.FlickrImpl.java in the function getPluginsList (line 493)
list.add("org.brickred.socialauth.plugin.flickr.AlbumsPluginImpl");
…into Andries-Smit-patch-2
google plus token expiry is returned as:
"expires_in" : 3596
OAuth2 class only handles strings:
if (jObj.has("expires_in")) {
String str = jObj.getString("expires_in");
if (str != null && str.length() > 0) {
expires = Integer.valueOf(str);
}
}
this code result in a exception being raised:
org.json.JSONException: JSONObject["expires_in"] not a string.
and ultimately fails with:
org.brickred.socialauth.exception.SocialAuthException: Unexpected auth response from https://accounts.google.com/o/oauth2/token
fix issue #30
… into LorenzoBoccaccia-master
Conflicts: socialauth/src/main/java/org/brickred/socialauth/oauthstrategy/OAuth2.java
Fixed hotmail/microsoft live login issue
Update master with merged pull requests from develop
Simple Travis Configuration
Merging commits to dev
Added Travis CI build status badge
initial commit for GitHub pages
Standard structure and content from labs site
Merging pages from dev to master
Bump up Facebook API to 2.10
Merge changes from dev to master
Add support for retrieving email address of authenticated Twitter User
Merging changes for Twitter email
Preparing for new Maven release
Upgrade Facebook Graph API to v3.2
Merge dev commits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.