简单分享一下PHP对接抖音小店的方法 首先需要配置一些公共的参数 踩到不少坑,需要有一起开发的互相学习。
protected $app_key = "app_key"; // 你的key
protected $app_secret = "app_secret"; // 你的secret
protected $app_url = "https://openapi-fxg.jinritemai.com"; // 固定的抖音地址
然后 我们需要获取一下令牌 access_token
https://openapi-fxg.jinritemai.com/oauth2/access_token?app_id=KEY&app_secret=SECRET&grant_type=authorization_self
名称 | 类型 | 是否必须 | 示例值 | 描述 |
---|---|---|---|---|
app_id | string | 是 | 3409409348479354011 | 即应用key ,长度19位数字字符串 |
app_secret | string | 是 | 2ad2355c-01d0-11f8-91dc-05a8cd1054b1 | 即应用密钥字符串 |
grant_type | string | 是 | authorization_self | 授权类型,默认为authorization_code |
上