抖店开放平台php处理类

        抖店不提供php开发的sdk,工作中需要用到。封装了一个。需要注意的是,抖音的php的签名文档说 使用v2,实际使用的v1签名,而且比较坑的是签名验证用不等于。。。。。。

      开头用Fxg是估计是抖音收购的放心购,简称fxg。

      比较坑的是:传参需要排序,传参还有多维素组。

<?php
class FxgClient
{
    private $appKey;
    private $appSecret;
    public function __construct(string $appKey,string $appSecret)
    {
        $this->appKey = $appKey;
        $this->appSecret = $appSecret;        
    }
    //v1版本签名
    public function sign( string $timestamp,  string $paramJson)
    {
        //  String signPattern = appSecret + "app_key" + appKey + "param_json" + sortedParamStr +"timestamp" + timestamp + appSecret;
        $paramPattern = 'app_key' . $this->appKey . 'param_json' . $paramJson . 'timestamp' . $timestamp ;

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值