Instagram API 和无需服务器端身份验证即可导入照片
我对想要使用 Instagram API 在网站中实现的某些功能感到有点困惑。我想根据 Instagram API 中的用户 ID 访问我自己的 feed 并将其显示在我的网站上。据说有一种方法可以进行客户端 OAuth 身份验证,但我对如何进行此操作有点困惑。我对 JavaScript 相当熟悉,如果有人能给我指出正确的方向,我相信我能弄清楚。
任何最佳实践都会很棒。
提前谢谢你,
JN
I am a bit confused on a certain functionality I would like to implement into a website using the Instagram API. I would like to access my own feed based on my user ID from the Instagram API and display them on my site. It is saying that there is a way to do client side OAuth authentication but I am a bit confused on how I would go about this. I am fairly okay with JavaScript and if someone could point me in the right direction I am sure I could figure it out.
Any best practices would be great.
Thank you in advance,
JN
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您询问如何使用 Instagram 的客户端(隐式)身份验证。
这里有几个为此制作的 JS 库:
You're asking how to use Client-Side (Implicit) Authentication for Instagram.
Here are a couple JS libraries made for it:
这困扰了我很多年,但我想我想出了一种简单的方法,可以在我的网站上获取我自己的照片,使用“jquery-instagram”插件的想法,但将其剥离。
提出一个 #tag 并将其添加到您想要在网站上显示的所有照片中,确保它不是任何人都会使用的东西。 (这样做可以防止需要验证任何内容)。
在此处注册您的应用:http://instagr.am/developer/register/(只需使用您的 Instagram 登录信息)
使用以下代码(使用 jQuery),其中“tag”是您使用的标签,“id”是您注册的应用客户端 ID,“photoCount”是您希望检索的最大照片数量。
<前><代码>$.ajax({
类型:“获取”,
数据类型:“jsonp”,
缓存:假,
网址:“https://api.instagram.com/v1/tags/”+标签+“/media/recent?client_id=”+id,
成功:函数(响应){
var length = response.data != '未定义' ?响应数据长度:0;
var limit = photoCount != null &&照片计数<长度 ?照片计数:长度;
如果(限制> 0){
for(var i = 0; i < limit; i++) {
$('', {
src:response.data[i].images.standard_resolution.url
}).appendTo($("#photos"));
}
}
}
});
This was bugging me for ages, but I think I came up with to a simple way to just get my own photo's on my website, using ideas from the "jquery-instagram" plugin, but stripping it way down.
Come up with a #tag and add it to all the photos you want to show on your site, make sure it's not something that just anyone will use. (Do it this way to prevent needing to authenticate anything).
Register your app here: http://instagr.am/developer/register/ (Just use your Instagram login)
Use the following code (with jQuery), where "tag" is the tag you used, "id" is your registered app client id, and "photoCount" is the max number of photos you wish to retrieve.