(token=None)
| 63 | } |
| 64 | |
| 65 | def app_headers(token=None): |
| 66 | headers = { |
| 67 | "User-Agent": DEFAULT_UA, |
| 68 | "content-Type": "application/json", |
| 69 | "Content-Type": "application/json", |
| 70 | "deviceInfo": "{}", |
| 71 | "Referer": "https://servicewechat.com/wx61457400e4212cec/390/page-frame.html", |
| 72 | } |
| 73 | if token: |
| 74 | headers["token"] = token |
| 75 | return headers |
| 76 | |
| 77 | def breo_task_headers(token): |
| 78 | return { |
no outgoing calls
no test coverage detected