20
如何在不通过用户身份验证的情况下从Instagram获取用户的媒体?
我试图将用户最近的Instagram媒体放在侧边栏上。我正在尝试使用Instagram API来获取媒体。 http://instagram.com/developer/endpoints/users/ 该文档说GET https://api.instagram.com/v1/users/<user-id>/media/recent/,但说要传递OAuth访问令牌。访问令牌表示代表用户执行操作的授权。我不希望用户登录Instagram在侧栏上看到它。他们甚至不需要拥有Instagram帐户。 例如,我可以不登录Instagram 即可访问http://instagram.com/thebrainscoop。我想通过API做到这一点。 在Instagram API中,未经用户身份验证的请求传递client_id而不是access_token。但是,如果尝试这样做,则会得到: { "meta":{ "error_type":"OAuthParameterException", "code":400, "error_message":"\"access_token\" URL parameter missing. This OAuth request requires an \"access_token\" URL parameter." } } 那么,这不可能吗?在不要求用户先通过OAuth登录Instagram帐户的情况下,是否无法获取用户的最新(公共)媒体?