2017-06-21 26 views
-1

我想直接發送照片到Instagram,而無需啓動它。可能嗎?是否有可能直接分享或發佈Instagram上的照片從我們的Android應用程序,而無需啓動instagram

File file = new File("/mnt/" + path); 
     Uri uri = Uri.fromFile(file); 
       Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND); 
         shareIntent.setType("image/*"); 
         shareIntent.putExtra(Intent.EXTRA_STREAM, uri); 
         shareIntent.setPackage("com.instagram.android"); 
         context.startActivity(shareIntent); 
+1

看看他們是否可以使用Web服務API。 – CommonsWare

+0

這是重複的:https://stackoverflow.com/a/16296859/7990687 – Esteban

回答

0

截至2017年6月21日,Instagram的沒有任何API或方法,你可以用它來發布到Instagram的圖像,而無需打開應用程序。但是,你可以發現你可以不從下面的鏈接打開的Instagram使用其他API端點:

https://www.instagram.com/developer/endpoints/

相關問題