instagram

Posting to Instagram via Script/Online/Program. Anything is good but mobile

自古美人都是妖i 提交于 2019-12-04 10:14:25
I just wanted to know if there is a way to upload images to Instagram WITHOUT using iOS / Android? I'm really desperate for a solution, if I can't find anything I will have to run a virtual android device or something like that (I have a virtual machine running Windows XP 24/7 anyway)! Instagram's official RESTful API does not allow for uploading photos, since they want to encourage "life on the go." However, some work has been put together to document their iPhone API, and some unofficial client libraries have even been made. Check out https://github.com/mislav/instagram/wiki It seems that's

Instagram/feed API media URL shows 'URL signature expired'

試著忘記壹切 提交于 2019-12-04 09:58:55
问题 I am using Instagram feed API to show my Instagram posts on my Website. But some video URL shows ' URL signature expired '. Any solution for me ? 回答1: Instagram has added URL signatures to their media URLs. You can easily remove the URL signature using this regular expression: "vp.*/.{32}/.{8}/" For example in PHP: preg_replace('/vp.*\/.{32}\/.{8}\//', '', $mediaUrl) On the other hand, I don't think that removing the URL signature is the best solution (is just a quick fix). The good one is to

Posts from Instagram not showing up on Facebook Open Graph API

强颜欢笑 提交于 2019-12-04 08:29:52
问题 I have an issue with Facebook OpenGraph API. Whenever I request data using either '/home' or '/feed', none of the posts from Instagram showed up. I've been googling around and apparently some people raised the same issue with no solution yet. And I read some that the issue not only affecting posts from Instagram, but also other third-party app/device/platform. Even the ticket posted on Facebook's dev page seems somewhat dead (no continuation). Link: https://developers.facebook.com/bugs

Is there any way to get the foursquare venue id of a place given an Instagram location id?

别来无恙 提交于 2019-12-04 08:06:16
Instagram locations are selected from a list of foursquare venues, and it's definitely possible to search for Instagram locations given a foursquare venue id, but I have an Instagram post and would like to find the foursquare venue it corresponds to - is this possible? 来源: https://stackoverflow.com/questions/19283541/is-there-any-way-to-get-the-foursquare-venue-id-of-a-place-given-an-instagram-lo

How to get other pages followers count number in Instagram?

烈酒焚心 提交于 2019-12-04 07:54:21
问题 is there possibility to get other pages follower count number in Instagram? I can get only my profile followers count number, but I want to get other followers too? (for example in php) Any ideas? 回答1: Yes, it's possible with ?__a=1 queries which return json. $otherPage = 'nasa'; $response = file_get_contents("https://www.instagram.com/$otherPage/?__a=1"); if ($response !== false) { $data = json_decode($response, true); if ($data !== null) { $follows = $data['graphql']['user']['edge_follow'][

Instagram Lux effect

喜夏-厌秋 提交于 2019-12-04 07:48:44
问题 Instagram added a Lux button recently, which allows auto-contrasting / leveling for the pictures you take. I have a bunch of pictures that I need to autolevel in a similar manner, making those pics better looking. If I would want to use a batch command with Imagemagick, what would be the "secret ingredients" to use? Should I just stick to the contrast setting, or play around with levels, etc.? As I do not know if the original picture will be dark, bright, already contrasted, I will need to

instagram api OAuthPermissionsException live mode

久未见 提交于 2019-12-04 07:37:47
I'm having an issues with the new API policy of Instagram I already got my app approved and got basic permissions IG API Permissions When using the app on sandbox mode I can get API response only for my own user, however when I move to Live Mode and try using the API all I receive is error 400 code For example https://api.instagram.com/v1/users/search?access_token=MY-TOKEN&count=6&q=world Response { meta: { error_type: "OAuthPermissionsException", code: 400, error_message: "This client has not been approved to access this resource." } } Even using the same API with my own username still

Instagram Explorer SearchBar and TableView

梦想的初衷 提交于 2019-12-04 07:08:23
I have a question for several days about UISearchBar. I don’t understand how the search bar of Instagram Explorer page works, for example : http://imgur.com/40I38mn I mean, at the beginning the ViewController shows the searchBar, and below a view(tableview?) which has nothing to do with it. And when the user begins a search by touching the search bar, the right tableview with data appears. In reality, are there multiple TableView ? UISearchBar calls an another view ? And… simple UISearchBar or UISearchController ? I made a lot of research, tested many things, I even tried a tableView.hidden =

How does Instagram use Amazon S3?

三世轮回 提交于 2019-12-04 06:58:31
I'm in need of some insight into Instagram's engineering when uploading files to Amazon S3. I'm just starting with S3 and I think Instagram is a good model to follow because they upload thousands of images each day. My app is somewhat similar. Users upload images, can delete their own images, and all images are public. In my project I'm creating objects with a folder prefix to organize uploads for each user. e.g. username/filename My object URLs look like this: https://s3.amazonaws.com/my_bucket/username/28c3d2c6ec098bd077d6b9cb5f13869d.jpg but Instagram: http://distilleryimage7.s3.amazonaws

White video when opening AVMutableComposition in Instagram

若如初见. 提交于 2019-12-04 06:46:44
After I export an AVMutableComposition I use PHPhotoLibrary to save the video to the camera roll. In the creationRequestForAssetFromVideoAtFileURL: completion handler, I then open the saved video in Instagram, like so: __block PHObjectPlaceholder *videoAssetPlaceholder; [[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{ PHAssetChangeRequest *req = [PHAssetChangeRequest creationRequestForAssetFromVideoAtFileURL:localVideoURL]; videoAssetPlaceholder = req.placeholderForCreatedAsset; } completionHandler:^(BOOL success, NSError *error) { if (success) { completion(YES); NSString *localID =