mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fix refresh profile picture functionality
Summary: turns out both github and Phabricator fall back to if the user already has a login session when accessing the pertinent profile picture data. Facebook on the other hand is a stingy bastard about have an actual access token. Ergo, in production (once I could test Facebook) this button failed. The patch sets the access token properly such that the provider can use it properly when retrieving the profile image. Test Plan: re-did my meta-Phabricator test and it still passed. setup my phabricator dev instance for Facebook OAuth (created a test app and everything... :/ ) and it worked end to end. Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley Maniphest Tasks: T870 Differential Revision: https://secure.phabricator.com/D1986
This commit is contained in:
parent
821f580c3a
commit
f7d975ab72
1 changed files with 3 additions and 1 deletions
|
@ -182,13 +182,15 @@ final class PhabricatorUserOAuthSettingsPanelController
|
|||
$provider = $this->provider;
|
||||
$error = false;
|
||||
$userinfo_uri = new PhutilURI($provider->getUserInfoURI());
|
||||
$token = $oauth_info->getToken();
|
||||
try {
|
||||
$userinfo_uri->setQueryParams(
|
||||
array(
|
||||
'access_token' => $oauth_info->getToken(),
|
||||
'access_token' => $token,
|
||||
));
|
||||
$user_data = @file_get_contents($userinfo_uri);
|
||||
$provider->setUserData($user_data);
|
||||
$provider->setAccessToken($token);
|
||||
$image = $provider->retrieveUserProfileImage();
|
||||
if ($image) {
|
||||
$file = PhabricatorFile::newFromFileData(
|
||||
|
|
Loading…
Reference in a new issue