ByteDanceAPI.php 522 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Helper\Bytedance;
  3. define('BASE_URL','https://developer.toutiao.com/api/apps/v2');
  4. final class ByteDanceAPI
  5. {
  6. /**
  7. * 获取 ACCESS_TOKEN
  8. * @url https://microapp.bytedance.com/docs/zh-CN/mini-app/develop/server/interface-request-credential/get-access-token
  9. */
  10. const ACCESS_TOKEN = BASE_URL.'/token';
  11. /**
  12. * 登陆
  13. * @url https://microapp.bytedance.com/docs/zh-CN/mini-app/develop/server/log-in/code-2-session
  14. */
  15. const LOGIN = BASE_URL.'/jscode2session';
  16. }