0% found this document useful (0 votes)
57 views1 page

Master of Craft

The document defines constants for various Line API endpoints and paths. It contains constants for the Line host domain, timeline API, permission API, login and auth queries, and query paths for features like polling, calling, LIFF, certificates, channels and shops.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
57 views1 page

Master of Craft

The document defines constants for various Line API endpoints and paths. It contains constants for the Line host domain, timeline API, permission API, login and auth queries, and query paths for features like polling, calling, LIFF, certificates, channels and shops.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

from akad.

ttypes import ApplicationType


import re

class Config(object):
LINE_HOST_DOMAIN = 'https://gd2.line.naver.jp'
LINE_OBS_DOMAIN = 'https://obs-sg.line-apps.com'
LINE_TIMELINE_API = 'https://gd2.line.naver.jp/mh/api'
LINE_TIMELINE_MH = 'https://gd2.line.naver.jp/mh'
LINE_LIFF_SEND = 'https://api.line.me/message/v3/share'
LINE_PERMISSION_API = 'https://access.line.me/dialog/api/permissions'

LINE_LOGIN_QUERY_PATH = '/api/v4p/rs'
LINE_AUTH_QUERY_PATH = '/api/v4/TalkService.do'

LINE_API_QUERY_PATH_FIR = '/S4'
LINE_POLL_QUERY_PATH_FIR = '/P4'
LINE_CALL_QUERY_PATH = '/V4'
LINE_LIFF_QUERY_PATH = '/LIFF1'
LINE_CERTIFICATE_PATH = '/Q'
LINE_CHAN_QUERY_PATH = '/CH4'
LINE_SQUARE_QUERY_PATH = '/SQS1'
LINE_SHOP_QUERY_PATH = '/SHOP4'

You might also like