0

I have public account in Instagram and I want that people that downloaded my app can post photo from that account.

How can I achieve this???

I know how to post photo if I login in Instagram but if user login from his account he will post image to his wall. Thank's for help

4

3 回答 3

0

我认为您不能从其他帐户发布照片。但是您可以在此页面上找到有关发布照片的所有信息 iPhone-hooks

于 2013-10-14T20:43:10.160 回答
0

不幸的是,Instagram API 不支持创建新帖子。

于 2013-10-10T09:45:38.417 回答
0
            Steps For Instagram Authentication

1] Authentication in    https://instagram.com/developer/clients/manage/ 


2] Add Plist File

<key>NSAppTransportSecurity</key>
        <dict>
            <key>NSAllowsArbitraryLoads</key>
                <true/>
        </dict>
<key>InstagramAppClientId</key>
    <string>7fa58b530dad4fe0a6cd63e2b261f0b9</string>
    <key>InstagramAppRedirectURL</key>
    <string>http://agileinfways.com</string>

3] Pod File Setup like,

     1) Open Command Prompt
     2) Go to Folder Directory
     3) pod setup
     4) pod init
     5) touch podfile
     6) OPEN -e podfile
     7) This  Pod File Add this line like,

    target 'App Name' do
        pod 'InstagramKit', '~> 3.6'
    end

    8) pod install
    9)Then Open Appname.xcworkspace File.
于 2015-10-03T06:04:09.653 回答