0

我想实现这种功能:

当客户端向

获取http://www.myserviceurl.com/rest/facebook/profile/me

得到回应

获取http://graph.facebook.com/profile/me

应用程序逻辑将附加所有必要的参数,因此最终 url 将如下所示:

graph.facebook.com/profile/me?access_token=XXX

相似的,

POST myserviceurl.com/rest/twitter/statuses/update.json,发布数据状态=Maybe%20he%27ll%20finally%20find%20his%20keys.%20%23peterfalk&trim_user=true&include_entities=true

->

POST api.twitter.com/1/statuses/update.json 与 POST 数据状态=Maybe%20he%27ll%20finally%20find%20his%20keys.%20%23peterfalk&trim_user=true&include_entities=true

通过这种方式,我想创建一个抽象层,并允许我的客户使用与提供者休息 url 相同的结构来调用我的休息服务。

推荐的方法是什么?

4

1 回答 1

0

也许您可以使用Facebook C# SDK(基本上是 Facebook Graph API 的包装器)从 Facebook 获取 json 数据并将其返回给您的用户。

于 2012-05-24T09:53:45.580 回答