instagram

Can't get profile details of user that have privacy on my API instagram PHP

北城余情 提交于 2020-03-26 10:28:01
问题 this is my very first post here, am so sorry if my english too bad, I've got some problem about getting user details, iam tryied to get user details of member that have private account in Instagram who i followed on instagram, its mean i can see the details of their profile on mobile phone (instagram app) but it running error in my API, anyone can help me? this is the error message stdClass Object ( [meta] => stdClass Object ( [error_type] => APINotAllowedError [code] => 400 [error_message] =

从Instagram“宁静、规则”的成功 看国内APP发展之路

此生再无相见时 提交于 2020-03-21 21:55:18
Instagram在全球获得的巨大成功,让很多社交、即时通信、图片乃至其他领域的APP等羡慕不已。尤其是Instagram在成立五年之后,仍能保持高频的使用幅度,仍然处于高速增长态势,看不到衰落的现象,更是难能可贵。相比之下,曾经的社交应用霸主Twitter的直线坠落,就显得是那么的出人意料。 Instagram的成功,其由来是能够“以小搏大”,仅以十几名员工的数量,就被Facebook以10亿美金收购,一举成为业界的标杆。而在这五年时间中,Instagram的变与不变,纠结与反复的过程,都在向业界和大众证实其并不是昙花一现的应用。在浮躁的国内移动互联网大环境下,Instagram的成功,值得国内APP学习和借鉴。 变与不变:instagram核心仍在 相比一般APP短则半年,长则两三年的寿命周期,Instagram能坚持火爆态势五年之久,已经超出寻常预计。若是在五年的时间之上再加入“变化较少”这个限定短语,似乎完全违背了移动互联网“喜新厌旧”规律。如果你是Instagram的初期用户,就会发现,现在的Instagram与五年前相比,在用户界面、功能等主体方面并没有多少不同。 但正是这样的“不变”,让Instagram一直坚持了下来。“不变”的核心,遵从的是对人性化操作、用户心理、使用习惯等的深度追随,毕竟总有些东西是很难改变的。Instagram巧妙地将这些难以改变的东西

Instagram Basic Display API

大城市里の小女人 提交于 2020-03-11 13:20:52
问题 The ultimate goal: display our corporate account's Instagram media onto our corporate website. Below, I will show everything that I have so far. I have the Instagram basic permissions approved: I have the Facebook app authenticated with the Instagram account with the appropriate permissions. Questions: If I'm using the Instagram Basic Display API, do I still need a website platform with the SDK implemented? Do I need Facebook Login if I'm just using one account to display media on our

Instagram Basic Display API

雨燕双飞 提交于 2020-03-11 13:18:44
问题 The ultimate goal: display our corporate account's Instagram media onto our corporate website. Below, I will show everything that I have so far. I have the Instagram basic permissions approved: I have the Facebook app authenticated with the Instagram account with the appropriate permissions. Questions: If I'm using the Instagram Basic Display API, do I still need a website platform with the SDK implemented? Do I need Facebook Login if I'm just using one account to display media on our

Instagram - share image, text and url via iOS app : swift

蓝咒 提交于 2020-03-05 05:52:57
问题 I am trying to share image with some text and a url from my app to Instagram which would later redirect to iOS app installed on the phone from Instagram app. I am able to share image on instagram but not with text and url. Any help related to the same would be great! 回答1: Instagram had removed pushing custom captions to their app while sharing photos at one point, check this post. I also understand, according to the Instagram iPhone Hooks page, that you can pass a photo only to the "Select A

How to get ALL Instagram POSTs by hashtag with the API (not only the posts of my own account)

笑着哭i 提交于 2020-02-26 09:37:20
问题 How to get ALL Instagram POSTs by hashtag with the API (not only the posts of my own account) I am trying to get all the instagram pictures tagged with a precise hashtag but I only receive my own developer account posts tagged with the hashtag. I am currently working in local development environment, maybe that's the problem? Furthermore, what is Sandbox mode, and what should I do to go "Real" mode ? In the platform policy, it's written " You cannot use the API Platform to crawl or store

Can you get/scrape emails from instagram accounts?

六月ゝ 毕业季﹏ 提交于 2020-02-25 05:56:26
问题 Someone is telling me that they can get all the email accounts associated to instagram accounts. Which would be a gold mind for marketing obviously. They gave me my email associated to my email account as proof. From my understanding, email addresses are hidden on instagram and this can not be done. But, i do not know how he got that email address as i use it ONLY for instagram. I went and tried to do a password reset to see if they gave you the email when you request a pass and no it blocked

Can you get/scrape emails from instagram accounts?

会有一股神秘感。 提交于 2020-02-25 05:56:07
问题 Someone is telling me that they can get all the email accounts associated to instagram accounts. Which would be a gold mind for marketing obviously. They gave me my email associated to my email account as proof. From my understanding, email addresses are hidden on instagram and this can not be done. But, i do not know how he got that email address as i use it ONLY for instagram. I went and tried to do a password reset to see if they gave you the email when you request a pass and no it blocked

Webscraping Instagram follower count BeautifulSoup

丶灬走出姿态 提交于 2020-02-24 08:45:32
问题 I'm just starting to learn how to web scrape using BeautifulSoup and want to write a simple program that will get the follower count for a given Instagram page. I currently have the following script (pulled from another Q&A thread): import requests from bs4 import BeautifulSoup user = "espn" url = 'https://www.instagram.com/'+ user r = requests.get(url) soup = BeautifulSoup(r.content) followers = soup.find('meta', {'name': 'description'})['content'] follower_count = followers.split('Followers

Webscraping Instagram follower count BeautifulSoup

人走茶凉 提交于 2020-02-24 08:45:26
问题 I'm just starting to learn how to web scrape using BeautifulSoup and want to write a simple program that will get the follower count for a given Instagram page. I currently have the following script (pulled from another Q&A thread): import requests from bs4 import BeautifulSoup user = "espn" url = 'https://www.instagram.com/'+ user r = requests.get(url) soup = BeautifulSoup(r.content) followers = soup.find('meta', {'name': 'description'})['content'] follower_count = followers.split('Followers