123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- //
- // ChineseMedicine
- //
- // Created by 刘振兴 on 2023/1/4.
- //
- #ifndef EREQUESTURL_h
- #define EREQUESTURL_h
- //登录
- #define URL_LOGIN @"/api/v2/userctx/user/sign-in"
- #define URL_REGISTER @"/api/v2/userctx/user/sign-up"
- #define URL_ACCOUNT_DELETE @"/api/v2/userctx/user/unregister"
- #define URL_PWD_MODIFY @"/api/v2/userctx/user/reset-password"
- #define URL_PWD_FORGET_PHONE @"/api/v2/userctx/user/retrieve-password"
- #define URL_PWD_FORGET_EMAIL @"/api/v2/userctx/user/update-password"
- //验证码
- #define URL_SEND_CODE @"/api/v2/userctx/user/sms-code"
- #define URL_SEND_CODE_EMAIL @"/user/api/entrance/captcha/email"
- //APNS
- #define URL_FCM_SUBSCRIBE @"/api/v2/gatewayctx/publish/subscribe"
- #define URL_FCM_UNSUBSCRIBE @"/api/v2/gatewayctx/publish/unsubscribe"
- //绑定小孩
- #define URL_CHILD_GET @"/api/v2/userctx/user/child/get"
- #define URL_CHILD_ADD @"/api/v2/userctx/user/child/create"
- #define URL_CHILD_UPDATE @"/api/v2/userctx/user/child/update"
- #define URL_CHILD_DELETE @"/api/v2/userctx/user/child/delete"
- //绑定设备
- #define URL_DEVICE_ADD @"/api/v2/userctx/user/child/device/bind"
- #define URL_DEVICE_DELETE @"/api/v2/userctx/user/child/device/unbind"
- //Chat
- #define URL_SESSION_LIST @"/api/v2/messagectx/history/session"
- #define URL_SESSION_RECORD @"/api/v2/messagectx/history/unread"
- #define URL_SESSION_SEND_TEXT @"/api/v2/messagectx/messaging/publish/chat/text"
- #define URL_SESSION_SEND_VIDEO @"/api/v2/messagectx/messaging/publish/chat/video"
- #define URL_SESSION_SEND_VOICE @"/api/v2/messagectx/messaging/publish/chat/voice"
- #define URL_SESSION_SEND_EMOJI @"/api/v2/messagectx/messaging/publish/chat/emoji"
- #define URL_SESSION_SEND_IMAGE @"/api/v2/messagectx/messaging/publish/chat/image"
- //联系人
- #define URL_CONTACT_GET @"/api/v2/userctx/user/child/contacts/get"
- #define URL_CONTACT_ADD @"/api/v2/userctx/user/child/contacts/create"
- #define URL_CONTACT_UPDATE @"/api/v2/userctx/user/child/contacts/update"
- #define URL_CONTACT_DELETE @"/api/v2/userctx/user/child/contacts/delete"
- //拦截陌生人
- #define URL_STRANGER_GET @"/api/v2/userctx/user/child/block-unknown-call/get"
- #define URL_STRANGER_UPDATE @"/api/v2/userctx/user/child/block-unknown-call/toggle"
- //闹钟
- #define URL_ALARM_CLOCK_GET @"/api/v2/userctx/user/alarm-clock/getall"
- #define URL_ALARM_CLOCK_ADD @"/api/v2/userctx/user/alarm-clock/create"
- #define URL_ALARM_CLOCK_UPDATE @"/api/v2/userctx/user/alarm-clock/update"
- #define URL_ALARM_CLOCK_DELETE @"/api/v2/userctx/user/alarm-clock/delete"
- //上课禁用
- #define URL_SCHOOL_TIME_GET @"/api/v2/userctx/user/child/school-disable/getall"
- #define URL_SCHOOL_TIME_ADD @"/api/v2/userctx/user/child/school-disable/create"
- #define URL_SCHOOL_TIME_UPDATE @"/api/v2/userctx/user/child/school-disable/update"
- #define URL_SCHOOL_TIME_DELETE @"/api/v2/userctx/user/child/school-disable/delete"
- //实时定位
- #define URL_LOCATION @"/api/v2/locatectx/location/ask"
- //历史轨迹
- #define URL_HISTORY_PATH @"/api/v2/locatectx/location/trajectory"
- //电子围栏
- #define URL_FENCE_GET @"/api/v2/locatectx/fence/get"
- #define URL_FENCE_CREATE @"/api/v2/locatectx/fence/create"
- #define URL_FENCE_UPDATE @"/api/v2/locatectx/fence/update"
- #define URL_FENCE_DELETE @"/api/v2/locatectx/fence/delete"
- #define URL_FENCE_TOGGLE @"/api/v2/locatectx/fence/total/switch"
- //事件
- #define URL_EVENT @"/user/api/remind/event"
- //短信
- #define URL_SMSS @"/locate/api/smss"
- #define URL_WIFI @"/locate/api/wifi"
- #define URL_ELECTRICITY_MODE @"/Service/V2/watchservice.asmx/SetWatchBatteryModeV2"
- #define URL_ONOFF @"/locate/api/onoff"
- #define URL_ONOFF_SHUTDOWN @"/api/v2/messagectx/messaging/publish/remote-control/shutdown"
- #define URL_ONOFF_REBOOT @"/api/v2/messagectx/messaging/publish/remote-control/reboot"
- #define URL_EYE @"/locate/api/eye"
- #define URL_FLOW @"/locate/api/flow"
- //消息中心
- #define URL_PUSH_MESSAGE @"/api/v2/messagectx"
- #define URL_SYSTEM_APP @"/locate/api/systemapp"
- #define URL_SYSTEM_DEVICE @"/locate/api/systemdevice"
- //监听
- #define URL_MONITOR @"/locate/api/monitor"
- //视频通话
- #define URL_VIDEO_DIAL @"/api/v2/messagectx/messaging/publish/video-call/dial"
- #define URL_VIDEO_HANGUP @"/api/v2/messagectx/messaging/publish/video-call/hangup"
- #define URL_VIDEO_TOKEN @"http://api.w303b.sikey.com.cn/token/generate"
- //Resource
- #define URL_UPLOAD_FILE @"/api/v2/userctx/file/upload"
- #define Operation_Guide_URL @"/view/doc.html"
- #define Frequent_Question_URL @"/view/FAQ.html"
- #endif
|