本文整理汇总了PHP中Abraham\TwitterOAuth\TwitterOAuth::setOauthToken方法的典型用法代码示例。如果您正苦于以下问题:PHP TwitterOAuth::setOauthToken方法的具体用法?PHP TwitterOAuth::setOauthToken怎么用?PHP TwitterOAuth::setOauthToken使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Abraham\TwitterOAuth\TwitterOAuth
的用法示例。
在下文中一共展示了TwitterOAuth::setOauthToken方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: prepareRequest
/**
* Prepare the Twitter client before sending a request
* Reads the oauth token and secret from the Provider for Twitter authentication
*
* @param string $provider_id
* @throws \Exception
*/
protected function prepareRequest($provider_id)
{
$userProvider = $this->providerRepository->get($provider_id);
if (empty($userProvider['oauth_token']) || empty($userProvider['oauth_token_secret'])) {
throw new \Exception('Invalid access token');
}
$this->client->setOauthToken($userProvider['oauth_token'], $userProvider['oauth_token_secret']);
}
示例2: testSetOauthToken
public function testSetOauthToken()
{
$twitter = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET);
$twitter->setOauthToken(ACCESS_TOKEN, ACCESS_TOKEN_SECRET);
$this->assertObjectHasAttribute('consumer', $twitter);
$this->assertObjectHasAttribute('token', $twitter);
$twitter->get('friendships/show', array('target_screen_name' => 'twitterapi'));
$this->assertEquals(200, $twitter->getLastHttpCode());
}