getCode() 공개 메소드

Get the code for the long-lived access token.
또한 보기: https://developers.facebook.com/docs/facebook-login/access-tokens#long-via-code
public getCode ( ) : string
리턴 string
예제 #1
0
 /**
  * @depends testExtendUserAccessToken
  */
 public function testExchangeLongLivedAccessTokenForCode(\Gajus\Fuss\AccessToken $access_token)
 {
     $this->assertTrue($access_token->isLong());
     return $access_token->getCode($access_token);
 }