Skip to content
ah edited this page May 20, 2019 · 2 revisions
  1. 先写好你的token验证文件,如网址: https://xxx.com/v1/tokens, 用来验证系统返回的 auth_token 参数。 以下代码供参考:

       if ($auth_token  == '123'} {
          return 'ok';
       }else {
          return 'error';
       }
    
  2. 设置 gofastdfs的配置文件:

       "auth_url": "https://xxx.com/v1/tokens",
    
  3. 上传文件时候,增加参数,比如你可以自己定义一个token规则或者使用jwt等tonken生成工具

       'auth_token'=>'123' 
    
  4. 上传文件的时候 gofastdfs会自动post到你设置的 https://xxx.com/v1/tokens 去验证 auth_token ,如果返回ok,开始上传等操作,如果token验证没通过,取消操作

Clone this wiki locally