この記事では、php で実装された Paypal 認証ログインのコードを共有します。必要な友達は参照してください。
PHPはPaypal認証ログインを実装します
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
/** * @プロジェクトペイパルログイン * @著者江建河 * @日付 2015-04-03 */
クラスペイパルログイン {
//サンドボックストークンリンク private $_sanbox_oauth2_auth_uri = 'https://www.sandbox.paypal.com/webapps/auth/protocol/openidconnect/v1/authorize'; private $_live_oauth2_auth_uri = 'https://www.paypal.com/webapps/auth/protocol/openidconnect/v1/authorize';
private $_acquire_user_profile_sandbox_url = 'https://www.sandbox.paypal.com/webapps/auth/protocol/openidconnect/v1/userinfo?schema=openid&access_token='; private $_acquire_user_profile_live_url = 'https://www.paypal.com/webapps/auth/protocol/openidconnect/v1/userinfo?schema=openid&access_token=';
//サンドボックストークンリンク private $_token_service_sandbox_url = 'https://www.sandbox.paypal.com/webapps/auth/protocol/openidconnect/v1/tokenservice'; private $_token_service_live_url = 'https://www.paypal.com/webapps/auth/protocol/openidconnect/v1/tokenservice'; プライベート $_sanbox_flag = true; プライベート $_client_id = null; プライベート $_client_secret = null; プライベート $_redirect_uri = null; プライベート $_state = ''; private $_scope = 'openid email Telephone profile address https://uri.paypal.com/services/paypalattributes'; //scope パラメータは、アクセス トークンのアクセス許可を決定します url;:https: //www.paypal -biz.com/product/login-with-paypal/index.html#configureButton
パブリック $token = null; パブリック $protocol = "http";
/** * @name コンストラクター * @param $flag サンドボックス環境かどうか */ パブリック関数 __construct($redirect_uri, $client_id,$client_secret,$scope,$state,$flag = true) { $this->_sanbox_flag = $flag; $this->_redirect_uri = $redirect_uri; $this->_client_id = $client_id; $this->_client_secret = $client_secret; $this->_scope = $scope; $this->_state = $state; }
/** * PayPalリクエストURLを作成します * @戻り文字列 */ パブリック関数 create_request_url() { $oauth2_auth_uri = $this->_sanbox_flag ? $this->_sanbox_oauth2_auth_uri :$this->_live_oauth2_auth_uri; $url = $oauth2_auth_uri.'?'. http_build_query( 配列( 'client_id' => $this->_client_id, //アプリケーション登録プロセスを通じて取得された一意のクライアント識別子。必須。 'response_type' =>'code', //認証コードがアプリケーションの戻り URL に送り返されることを示します。ユーザー エージェントからアクセス トークンを非表示にするには、値 'スコープ' => $this->_scope,//;implode(',', $this->scope), 'redirect_uri' => urlencode($this->_redirect_uri), //アプリケーションの戻り URL。構造、ホスト名、およびポートは、アプリケーションの登録時に設定した戻り URL と一致する必要があります。 'nonce' => time().rand(), //リプレイ攻撃のリスクを軽減するための不透明なランダム識別子。単純な関数は次のとおりです: (タイムスタンプ + Base64 エンコーディング (ランダム[16]))。 'state' => $this->_state, // CSRF 検証コード ) ); $url を返す; }
/** * PayPal アクセストークンを取得します * @param string $code ? * @return 文字列アクセス トークン */ パブリック関数acquire_access_token($code) { $accessToken = null;
試してください{ $postvals = sprintf("client_id=%s&client_secret=%s&grant_type=authorization_code&code=%s",$this->_client_id,$this->_client_secret,$code); if($this->_sanbox_flag) $ch =curl_init($this->_token_service_sandbox_url); その他 $ch =curl_init($this->_token_service_live_url);
$オプション = 配列( CURLOPT_POST => 1, CURLOPT_VERBOSE => 1, CURLOPT_POSTFIELDS => $postvals, CURLOPT_RETURNTRANSFER => 1, CURLOPT_SSL_VERIFYPEER => FALSE、 //CURLOPT_SSLVERSION => 2 );
curl_setopt_array($ch, $options); $response =curl_exec($ch); $error =curl_error($ch);
curl_close( $ch );
if (!$response ) { throw new Exception( "アクセス トークンの取得エラー: " .curl_error($ch)); } $jsonResponse = json_decode($response );
if ( isset( $jsonResponse->access_token) ) { $accessToken = $jsonResponse->access_token; }
} catch(例外 $e) { 新しい例外をスロー($e->getMessage(), 1); }
$accessToken を返す; }
/** * デコードされた PayPal ユーザー プロファイルを取得します * @param string $accessToken * @オブジェクトを返す */ パブリック関数acquire_paypal_user_profile($accessToken) { 試してください{ if($this->_sanbox_flag) $url = $this->_acquire_user_profile_sandbox_url 。 $accessToken; その他 $url = $this->_acquire_user_profile_live_url 。 $accessToken;
$ch =curl_init( $url ); $オプション = 配列( CURLOPT_RETURNTRANSFER => 1、 CURLOPT_SSL_VERIFYPEER =>違います、 //CURLOPT_SSLVERSION => 2 ); curl_setopt_array($ch, $options);
$response =curl_exec($ch); $error =curl_error( $ch); curl_close( $ch );
if (!$response ) { false を返す; } return json_decode($response); } catch( 例外 $e ) { false を返す; } } } ?> |
以上記載は本文の全内容です、大家様に喜んでいただければ幸いです。
http://www.bkjia.com/PHPjc/1007644.html