Posted by This Thus This Thus on Senin, 28 Desember 2015
Bookmark:
Memahami Prosedur Kerja Protocol LINE Messenger
https://raw.githubusercontent.com/cslinmiso/LINE-instant-messenger-protocol/master/line-protocol.md
Memahami Enkripsi
https://github.com/Cyan4973/xxHash
Membuat Aplikasi LINE Dengan Python
https://github.com/carpedm20/LINE
Membuat LINE Messenger Dengan Bahasa Pemograman Java
https://github.com/cslinmiso/LineAPI4J
https://github.com/cslinmiso/jsline-api
Proyek belum kelar, akan diupdate berkala jika sudah kelar.
Contoh Kirim Pesan di LINE dengan Bahasa Python, Download di
sini:
from line import LineClient, LineGroup, LineContact
try:
client = LineClient("ID", "PASSWORD")
#client = LineClient(authToken="AUTHTOKEN")
except:
print "Login Failed"
while True:
op_list = []
for op in client.longPoll():
op_list.append(op)
for op in op_list:
sender = op[0]
receiver = op[1]
message = op[2]
msg = message.text
receiver.sendMessage("[%s] %s" % (sender.name, msg))