2013-10-10 4 views
0

Instagram에 공개 계정이 있으며 내 앱을 다운로드 한 사람들이 해당 계정의 사진을 게시 할 수 있기를 바랍니다.Instagram sdk in own app

어떻게하면 되나요? ???

나는 Instagram에 로그인하면 사진을 게시하는 방법을 알고 있지만 그의 계정에서 사용자가 로그인하면 그의 벽에 이미지가 게시됩니다. 감사합니다.

답변

0

불행히도 Instagram API는 새 게시물 작성을 지원하지 않습니다.

+0

user24073 @ 난 인스 타 그램 이미지를 게시 할 수 있습니다. 하지만 1 계정에서 내 앱에 이미지를 게시 할 수 있는지 알고 싶습니다. – user2545330

0

다른 계정의 사진을 게시 할 수 없다고 생각합니다. 하지만 당신은이 페이지 iPhone-hooks에 사진을 게시에 대한 모든 정보를 찾을 수 있습니다

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.