5
我需要使用HTML鏈接運行Instagram應用程序。 對於iPhone我使用iPhone掛鉤(Instagram iPhone Hooks)。Android的Instagram自定義URL方案
我該如何爲Android做同樣的事情?
我需要使用HTML鏈接運行Instagram應用程序。 對於iPhone我使用iPhone掛鉤(Instagram iPhone Hooks)。Android的Instagram自定義URL方案
我該如何爲Android做同樣的事情?
Google Groups上的Instagram API開發人員組中有一個thread on this subject。
根據Instagram開發人員之一Mike Krieger的說法,您可以使用Intents在Android上實現文檔交互。如果這是您需要的,您應該查看sharing with intents上的Android文檔。
共享的圖像(這應該彈出的Instagram作爲您的共享選項之一)的基本代碼是這樣的:
Intent intent = new Intent(Intent.ACTION_SEND);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
intent.setType("image/*");
Uri uri = Uri.fromFile(getFileStreamPath(pathToImage));
intent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(intent, "How do you want to share?"));
pathToImage
顯然是要分享圖像的文件名。
不幸的是,目前似乎還沒有支持任何自定義URL功能。所以,如果這就是你所追求的,我會建議你在那個Google網上論壇主題中提供反饋,具體說明你需要哪些功能。