吕新华 发表于 2022-7-19 04:42:01

阿里巴巴API开发sdk .net平台

阿里巴巴开放平台 SDK 运行样例。

调用阿里巴巴开放平台的API你是不是获取不到访问口令,看一下我的例子吧,原因是后台已经更改,而网站的说明没有更新。

IniFile ini = new IniFile();
Dictionary sl = new Dictionary();
sl = ini.GetSectionValues("Setting");
strAppKey = sl["appKey"].ToString();
strAccToken = sl["access_token"].ToString();
strAppSecret = sl["appSecret"].ToString();
string strTokeyTime = sl["datatime"].ToString();
string strRefresh_token = sl["refresh_token"].ToString();

//比较令牌保存时间,如果比现在早10个小时以上就更新
DateTime dt = Convert.ToDateTime(strTokeyTime);
TimeSpan ts = System.DateTime.Now.Subtract(dt);
if ((Int16.Parse(ts.Days.ToString()) >= 1) || (decimal.Parse(ts.Hours.ToString()) > 8))
{
//超过有效期,重新获取Access_Token
//利用Refresh_token获取access_token
Dictionary ls = new Dictionary();
string urlStr = "https://gw.open.china.alibaba.com/openapi/http/1/system.oauth2/getToken/" + strAppKey;
Dictionary dc = new Dictionary();
dc.Add("grant_type", "refresh_token");
dc.Add("need_refresh_token", "true");
dc.Add("client_id", strAppKey);
dc.Add("client_secret", strAppSecret);
dc.Add("redirect_uri", "http://localhost");
dc.Add("refresh_token", strRefresh_token);
WebUtils wu = new WebUtils();
string tbxToken = wu.DoPost(urlStr, dc);
Hashtable hs = (Hashtable)PluSoft.Utils.JSON.Decode(tbxToken);
//保存令牌
ini.WriteValue("Setting", "access_token", hs["access_token"].ToString());
ini.WriteValue("Setting", "datatime", System.DateTime.Now.ToString());

strAccToken = hs["access_token"].ToString();
}
获取授权的CODE和令牌,分两

资源下载地址和密码(百度云盘):**** Hidden Message ***** 百度网盘信息回帖可见



本资源由Java自学网收集整理【www.javazx.com】

晶娴 发表于 2022-7-19 04:16:08

看到这帖子真是高兴!

扬艺机械科技 发表于 2022-7-19 04:31:16

强烈支持楼主ing……

哦哦 发表于 2022-7-19 04:45:56

强烈支持楼主ing……

lanfeng 发表于 2022-8-9 09:45:23

xingtu 发表于 2022-8-13 09:46:57

完整 清晰 真不错

13554623301 发表于 2022-8-22 15:54:07

好东西,学这块很必要呢

我是谁哦 发表于 2022-9-2 20:31:01

谢谢分享,先看看

igeek 发表于 2022-9-12 12:08:27

可以看 不错

zlxly2015 发表于 2022-10-1 14:13:43

it视频教程给力
页: [1] 2 3 4 5 6
查看完整版本: 阿里巴巴API开发sdk .net平台