1

我正在尝试学习 Phonegap 并使用它为 Andorid 制作一个小型应用程序。我的应用程序需要从 FourSquare API 中提取附近的餐馆。

我可以通过哪些方式做到这一点?

我无法理解 FourSqaure 的文档。它需要OAuth机制来完成。如何在 PhoneGap 应用程序中执行此操作 - 缺少重定向 URI。

如果有人能告诉我要走哪条路以及如何实现这一目标,那将非常有帮助?

4

2 回答 2

2

您是否尝试过使用 ChildBrowser 插件?(https://github.com/phonegap/phonegap-plugins/tree/master/Android/ChildBrowser)我将它用于 Twitter,它似乎适用于身份验证。但是您确实存在必须以易于访问的格式存储秘密 OAuth 密钥的问题。

于 2012-06-12T19:42:00.467 回答
0

本月早些时候,我只是在为同样的问题而苦苦挣扎。我正在寻找一种在 Android 上实现自定义 RESTful 服务的好方法。我遇到了这个名为 Scribe 的库(https://github.com/fernandezpablo85/scribe-java)。它在 Android 上运行得非常好。更好的是,它已经内置了对 Foursquare OAuth 的支持!这是他们展示的使用 Scribe+Android+Foursquare 的示例文件:

package org.scribe.examples;

import java.util.Scanner;

import org.scribe.builder.*;
import org.scribe.builder.api.*;
import org.scribe.model.*;
import org.scribe.oauth.*;

public class FoursquareExample
{
  private static final String PROTECTED_RESOURCE_URL = "http://api.foursquare.com/v1/user";

  public static void main(String[] args)
  {
    OAuthService service = new ServiceBuilder()
                            .provider(FoursquareApi.class)
                            .apiKey("FEGFXJUFANVVDHVSNUAMUKTTXCP1AJQD53E33XKJ44YP1S4I")
                            .apiSecret("AYWKUL5SWPNC0CTQ202QXRUG2NLZYXMRA34ZSDW4AUYBG2RC")
                            .build();
    Scanner in = new Scanner(System.in);

    System.out.println("=== Foursquare's OAuth Workflow ===");
    System.out.println();

    // Obtain the Request Token
    System.out.println("Fetching the Request Token...");
    Token requestToken = service.getRequestToken();
    System.out.println("Got the Request Token!");
    System.out.println();

    System.out.println("Now go and authorize Scribe here:");
    System.out.println(service.getAuthorizationUrl(requestToken));
    System.out.println("And paste the verifier here");
    System.out.print(">>");
    Verifier verifier = new Verifier(in.nextLine());
    System.out.println();

    // Trade the Request Token and Verfier for the Access Token
    System.out.println("Trading the Request Token for an Access Token...");
    Token accessToken = service.getAccessToken(requestToken, verifier);
    System.out.println("Got the Access Token!");
    System.out.println("(if your curious it looks like this: " + accessToken + " )");
    System.out.println();

    // Now let's go and ask for a protected resource!
    System.out.println("Now we're going to access a protected resource...");
    OAuthRequest request = new OAuthRequest(Verb.GET, PROTECTED_RESOURCE_URL);
    service.signRequest(accessToken, request);
    Response response = request.send();
    System.out.println("Got it! Lets see what we found...");
    System.out.println();
    System.out.println(response.getBody());

    System.out.println();
    System.out.println("Thats it man! Go and build something awesome with Scribe! :)");
 }

}
于 2012-06-09T16:15:33.823 回答