阿里云呼叫中心 openapi使用code获取token返回400错误

1、返回
:
a940526a-9d95-4717-80d2-22366cfaaaf6
code is invalid
400
invalid_grant

2、

static String ALIYUN_TOKEN_ENDPOINT = "http://oauth.aliyun.com/v1/token";

Dictionary dic = new Dictionary();

        dic.Add("client_id", clientId);
        dic.Add("grant_type", "authorization_code");
        dic.Add("client_secret", client_secret);
        dic.Add("code", code);
        dic.Add("redirect_uri", registeredCallbackUrl);
        dic.Add("code_verifier", "yuhT7azLRG2ZVTp5BEFWtVV5WzXWGswH2ZW0VwWrfOMoV");
        return dic;

string ret = HttpHelper.Post(ALIYUN_TOKEN_ENDPOINT, dic);

3、HttpHelper.Post() post请求帮助类测过无误

 参数无误

https://blog.csdn.net/jiede1/article/details/73187603/