0
如何從下面的匿名內部類獲取accessToken?當我嘗試在類的外部使用accessToken時,它顯示爲空。在關閉內部類之後,我試圖顯示一個帶有accessToken的敬酒,它只顯示爲空。我希望能夠在asynctask中使用accessToken來獲取一些數據。我怎麼能這樣做呢?Android Foursquare accessToken:如何從內部類獲取accessToken?
public class main extends Activity {
public static final String CALLBACK_URL = "url";
public static final String CLIENT_ID = "id";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
String url =
"https://foursquare.com/oauth2/authenticate" +
"?client_id=" + CLIENT_ID +
"&response_type=token" +
"&redirect_uri=" + CALLBACK_URL;
// If authentication works, we'll get redirected to a url with a pattern like:
//
// http://YOUR_REGISTERED_REDIRECT_URI/#access_token=ACCESS_TOKEN
//
// We can override onPageStarted() in the web client and grab the token out.
WebView webview = (WebView)findViewById(R.id.webView);
webview.getSettings().setJavaScriptEnabled(true);
webview.setWebViewClient(new WebViewClient() {
public void onPageStarted(WebView view, String url, Bitmap favicon) {
String fragment = "#access_token=";
int start = url.indexOf(fragment);
if (start > -1) {
// You can use the accessToken for api calls now.
String accessToken = url.substring(start + fragment.length(), url.length());
Toast.makeText(main.this, "Token: " + accessToken, Toast.LENGTH_SHORT).show();
}
}
});
webview.loadUrl(url);
}
}
當我嘗試使用類之外的accessToken時,它顯示爲空。在關閉內部類之後,我試圖顯示一個帶有accessToken的敬酒,它只顯示爲空。 – mergesort
webview將異步加載。訪問令牌在onCreate後不會立即可用。你必須建立一個方法'setAccessToken',內部類會在完成初始化完成時調用。任何其他需要令牌的代碼都可以從那裏開始。 – Thilo
它的工作!非常感謝。 – mergesort