Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Kakaotalk API for Android application ?

Tags:

android

sdk

api

I want to build a android application with Kakao integration. My application require these functionality.

  1. Login with Kakaotalk account.

  2. Fetching friends list of a user.

  3. Can post a message to a user (fetched in step 2).

So does kakao provides an api or sdk like facebook sdk. Can we implement functionality in our own application without launching Kakaotalk application and sending data to it using intent ?

like image 282
Vibhor Bhardwaj Avatar asked Jan 08 '14 09:01

Vibhor Bhardwaj


2 Answers

Finally I got my answer from kakao support that they do not provide any SDK or API to fetch friends.So it is not possible.

like image 58
Vibhor Bhardwaj Avatar answered Oct 23 '22 08:10

Vibhor Bhardwaj


Now days KakaoTalk REST API has such example to fetching user list on their page

curl -v -X GET https://kapi.kakao.com/v1/user/ids \
      -H "Authorization: KakaoAK kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk"

link to REST API

like image 28
Piter Key Avatar answered Oct 23 '22 07:10

Piter Key