밴드 앱에 API가 있나요? 배경설명이 더 필요합니다. 안드로이드앱에서 밴드로 글을 보내는건지 아이폰에서 글을 보내는건지. 현재는 어떻게 글을 공유하고 있는데 이미지는 안된다는건지 더 설명해 주셔야 답변이 가능할것 같네요.정토드2016.4.1 13:27
https://developers.band.us/developers/ko/docs/share#format_app 가면 밴드 공유하는 법이 설명되어있는데 String serviceDomain = "www.bloter.net"; // 연동 서비스 도메인
String encodedText = "%ED%85%8C%EC%8A%A4%ED%8A%B8+%EB%B3%B8%EB%AC%B8"; // 글 본문 (utf-8 urlencoded)
Uri uri = Uri.parse("bandapp://create/post?text=" + encodedText + "&route=" + serviceDomain);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
activity.startActivity(intent); 텍스트는 가능한데 여기서 이미지까지 같이 넘기는 방법 있을까요..?알 수 없는 사용자2016.4.1 15:16
댓글 입력