3

我发出这样的朋友/身份证电话:

GET /1.1/friends/ids.json?screen_name=blablabla HTTP/1.1

发出有效响应:

{"ids":[97500486,32947624,8884440,2022687,28741369,33978239,10312111,950922,7682036,21688137,7696145,15876098],"next_cursor":0,"next_cursor_str":"0","previous_cursor":0,"previous_cursor_str":"0"}

我的界面如下所示:

[OperationContract(Name = "ids.json")]
[WebGet(ResponseFormat = WebMessageFormat.Json, UriTemplate="ids.json?user_id={userId}&screen_name={screenName}")]
FriendsIdsResponse Ids(long? userId, string screenName);

[DataContract]
public class FriendsIdsResponse
{
  public FriendsIdsResponse()
  {
  }

  [DataMember(Name = "ids")]
  public long[] Ids { get; set; }
  [DataMember(Name = "previous_cursor")]
  public int PreviousCursor { get; set; }
  [DataMember(Name = "next_cursor")]
  public int NextCursor { get; set; }
}

无论 Ids 是什么类型(long[]、IList、List 等),它总是返回 null。如果我将它实例化为 ctor 中的一个空列表,它的 Count==0。

根据要求更新WCF 配置:

<system.serviceModel>
    <client>
        <endpoint contract="TA.Twitter.Service.IFriends, TA.Twitter.Interfaces"
                            address="https://api.twitter.com/1.1/friends/"
                            binding="webHttpBinding" bindingConfiguration="WebHttpBinding"
                            ></endpoint>
    </client>
    <bindings>
        <webHttpBinding>
            <binding name="WebHttpBinding" allowCookies="true">
                <security mode="Transport">
                </security>
            </binding>
        </webHttpBinding>
    </bindings>
</system.serviceModel>
4

1 回答 1

1

不是一个完整的答案,但您是否仅限于使用 WCF 调用 Tweeter API?我是 WCF 的忠实粉丝,但对于 Twitter,已经有很多 .net 库。我知道 WCF 存在挑战,但我不想每次都重新发明轮子。

Tweetsharp似乎是一个流行的用于 Twitter API 访问的 .net 库。

假设您已经拥有 OAuth 令牌,只需不到 10 行代码即可完成交友。

    var service = new TweetSharp.TwitterService("consumerKey", "consumerSecret");
    service.AuthenticateWith("accessToken", "accessTokenSecret");

    var friends = service.ListFriendIdsOf(new TweetSharp.ListFriendIdsOfOptions() { ScreenName = "blabla" });
    foreach (var friend in friends)
    {
        Console.WriteLine("new friend :{0} ", friend);
    } 

不到10行,不到10分钟,似乎是一个不错的折衷方案

于 2013-06-12T12:10:23.393 回答