當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Twitter::getFollowersIds方法代碼示例

本文整理匯總了PHP中Twitter::getFollowersIds方法的典型用法代碼示例。如果您正苦於以下問題:PHP Twitter::getFollowersIds方法的具體用法?PHP Twitter::getFollowersIds怎麽用?PHP Twitter::getFollowersIds使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Twitter的用法示例。


在下文中一共展示了Twitter::getFollowersIds方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: function

        $request_token = ['token' => Session::get('oauth_request_token'), 'secret' => Session::get('oauth_request_token_secret')];
        Twitter::reconfig($request_token);
        $oauth_verifier = false;
        if (Input::has('oauth_verifier')) {
            $oauth_verifier = Input::get('oauth_verifier');
        }
        // getAccessToken() will reset the token for you
        $token = Twitter::getAccessToken($oauth_verifier);
        if (!isset($token['oauth_token_secret'])) {
            return Redirect::route('twitter.login')->with('flash_error', 'We could not log you in on Twitter.');
        }
        $credentials = Twitter::getCredentials();
        if (is_object($credentials) && !isset($credentials->error)) {
            // $credentials contains the Twitter user object with all the info about the user.
            // Add here your own user logic, store profiles, create new users on your tables...you name it!
            // Typically you'll want to store at least, user id, name and access tokens
            // if you want to be able to call the API on behalf of your users.
            // This is also the moment to log in your users if you're using Laravel's Auth class
            // Auth::login($user) should do the trick.
            Session::put('access_token', $token);
            return Redirect::to('/')->with('flash_notice', 'Congrats! You\'ve successfully signed in!');
        }
        return Redirect::route('twitter.error')->with('flash_error', 'Crab! Something went wrong while signing you up!');
    }
}]);
Route::get('twitter/statuses', function () {
    return Twitter::getHomeTimeline(['count' => 20, 'format' => 'array']);
});
Route::get('twitter/followers', function () {
    return Twitter::getFollowersIds(['format' => 'array']);
});
開發者ID:ankitdeveloper,項目名稱:social,代碼行數:31,代碼來源:routes.php

示例2: getFollowersIds

 public function getFollowersIds($Model, $screenName)
 {
     return $this->_Twitter->getFollowersIds($screenName);
 }
開發者ID:priyankasingh,項目名稱:Genie,代碼行數:4,代碼來源:TwitterBehavior.php


注:本文中的Twitter::getFollowersIds方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。