android - android 中的 foursquare 集成

标签 android integration foursquare

我想在 android 中集成 foursquare。所以我尝试了两个例子。

第一个例子:

public class ActivityWebView extends Activity 
{
private static final String TAG = "ActivityWebView";

/**
 * Get these values after registering your oauth app at: https://foursquare.com/oauth/
 */

public static final String CLIENT_ID = "";
public static final String OAUTH_CALLBACK_SCHEME = "x-oauthflow-foursquare";
public static final String OAUTH_CALLBACK_HOST = "callback";
public static final String CALLBACK_URL = OAUTH_CALLBACK_SCHEME + "://" + OAUTH_CALLBACK_HOST;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_webview);

    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());

                Log.v(TAG, "OAuth complete, token: [" + accessToken + "].");

                Toast.makeText(ActivityWebView.this, "Token: " + accessToken, Toast.LENGTH_SHORT).show();
            }
        }
    });
    webview.loadUrl(url);
}

第二个例子:

http://blog.doityourselfandroid.com/2011/09/05/integrate-foursquare-android-application/

我在 list 文件中添加了额外的代码

<activity android:name=".ActivityWebView" android:launchMode="singleTask"  android:noHistory="true"> 
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="x-oauthflow-foursquare" android:host="callback" />
        </intent-filter>
    </activity>

运行两个应用程序后,身份验证成功,但它显示带有此消息的 Web View

you dont have permission to open this page x-oauthflow-foursquare://callback#access_token=DRWDP004zzAIZ1PPJEANEBFCM3NZJ1T414U2Z

所以请告诉我它是否需要添加任何额外的权限。请解决我的问题。

最佳答案

使用 Foursquare API 检查此代码的身份验证部分和回调部分:

public class ActivityMain extends Activity{
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Button btn = (Button)findViewById(R.id.button);
    btn.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            Intent intent = new Intent(ActivityMain.this, ActivityWebView.class);
            startActivity(intent);
        }
    });
}
}

ActivityWebView.Java:点击按钮后:

public class ActivityWebView extends Activity{
    private static final String TAG = "ActivityWebView";
    public static final String CLIENT_ID = "01QWBUR2UUFSMMLZXOM5YY0UWCM4BC0F2IOZDJ0S5XGOINQM";
    public static final String OAUTH_CALLBACK_SCHEME = "x-oauthflow-foursquare";
    public static final String OAUTH_CALLBACK_HOST = "callback";
    public static final String CALLBACK_URL = OAUTH_CALLBACK_SCHEME + "://" + OAUTH_CALLBACK_HOST;


@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_webview);       

    String url =
        "https://foursquare.com/oauth2/authenticate" + 
            "?client_id=" + CLIENT_ID + 
            "&response_type=token" + 
            "&redirect_uri=" + CALLBACK_URL;

            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());

                Log.v(TAG, "OAuth complete, token: [" + accessToken + "].");

                Toast.makeText(ActivityWebView.this, "Token: " + accessToken, Toast.LENGTH_SHORT).show();
                editor.putString("Access_Token", accessToken);
                editor.commit();
                startActivity(new Intent(ActivityWebView.this,Nearest_Places_View.class));  // After Successfull Login the Web view will Redirected to Nearest_Places_View Activity
            }
        }
    });
    webview.loadUrl(url);
}
}

activity_webview.xml :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" >
 <WebView  
    android:id="@+id/webview"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"  />
 </LinearLayout>

回调后的 Activity :

public class Nearest_Places_View extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.anylayout);

        // Do your All stuff for Foursquare for example getting User Checkins,Nearest Place
    }
 }

您的 list 文件应如下所示:

<?xml version="1.0" encoding="utf-8"?>
 <manifest 
  xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.foursquare.android.oauth"
  android:versionCode="1"
  android:versionName="1.0">
  <uses-sdk android:minSdkVersion="4" />
   <application     android:icon="@drawable/icon"    android:label="@string/app_name">
        <activity   android:name=".ActivityMain"        android:label="@string/app_name">
           <intent-filter>
             <action android:name="android.intent.action.MAIN" />
             <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
       </activity>

  <activity
  android:name=".Nearest_Places_View"
  />

<activity android:name=".ActivityWebView" android:launchMode="singleTask">>
    <intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <data android:scheme="x-oauthflow-foursquare" android:host="callback" />
    </intent-filter>
</activity>

Settings Page should look like this

所有三个回调应该相同 1. Activity 2.manifest 3.Settings Page。那么只有它会起作用。

关于android - android 中的 foursquare 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7845361/

相关文章:

android - 在 Android 中基于叠加层裁剪位图 - Camera API 2

c++ - 集成多个 C++ 程序

android - 添加提示时出现 java.io.FileNotFoundException

java - Android:表示接口(interface)的所有字段都是@Nullable

java - 收到错误 10 后如何让 Google-Sign 正常工作?

android - 字符序列中的多个跨度

android - 在当前 field 地理位置从 foursquare api 获取物理地址

php - paypal php响应或返回过程?

apache - Spring 集成或 Apache HTTP 客户端

api - 在本地主机上测试 foursquare API