如何获取用户最近的所有Instagram媒体?

时间:2015-11-28 22:12:59

标签: instagram instasharp

我正在使用 InstaSharp 来尝试获取用户的最新媒体帖子。我收到了错误:

{"Exception has been thrown by the target of an invocation."}

这是我的代码:

    public async Task<string> GetUserRecentMedia(string userId)
    {
        string response = string.Empty;
        try
        {
            InstagramConfig config = new InstagramConfig(ClientId, ClientSecret, RedirectUri, string.Empty);
            Users usersEndpoints = new Users(config);
            response = ConvertToJson(usersEndpoints.Recent(userId));
        }
        catch (Exception ex) { }
        return response;
    }

1 个答案:

答案 0 :(得分:0)

你需要在异步方法中调用InstaSharp方法(正如你所做的那样)并等待 你想要调用的方法

await usersEndpoints.Recent(userId);