如何在foursquare中发布图像在android中集成?

时间:2014-01-24 12:18:54

标签: android

我正在使用Foursquare API,它可以正常登录。

现在我想在Foursquare上传照片(在Forsquare上分享照片),

我有访问令牌和所有相关信息。我已经使用过这段代码了,但它也没有用。

请帮帮我.., 谢谢。

这是我的代码。

protected void onActivityResult(int requestCode, int resultCode, Intent data) 
{
  if (requestCode == CAMERA_PIC_REQUEST) 
  {
     if (resultCode == RESULT_OK) 
     {
        Uri imageUri = data.getData();
        List<NameValuePair> params = new ArrayList<NameValuePair>(4);
        Intent intent = getIntent();
        String message = intent.getStringExtra(SignIn.EXTRA_MESSAGE);
        params.add(new BasicNameValuePair("venueId", message));
        params.add(new BasicNameValuePair("image", imageUri.getPath()));
        Log.d("myresponse", imageUri.getPath());
        params.add(new BasicNameValuePair("oauth_token",[myoauthtoken]));
        params.add(new BasicNameValuePair("v", "20121210"));
        post("https://api.foursquare.com/v2/photos/add", params);
     } 
  }
}

0 个答案:

没有答案