我在Instagram上有公共帐户,我希望下载我的应用的人可以发布该帐户的照片。
我怎样才能做到这一点?
如果我在Instagram登录,我知道如何发布照片,但如果用户从他的帐户登录,他会将图片发布到他的墙上。谢谢你的帮助
答案 0 :(得分:0)
不幸的是,Instagram API不支持创建新帖子。
答案 1 :(得分:0)
我认为您无法从其他帐户发布照片。但是您可以在此页面上找到有关发布照片的所有信息 iPhone-hooks:
答案 2 :(得分: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.