資源簡介
利用ASP.NET開發的網上商城,包括數據庫文件與項目,經測試可正常運行,功能比較完善
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Text;
using?Common;
using?LitJson;
namespace?API.OAuth
{
????public?class?feixin_helper
????{
????????public?feixin_helper()
????????{?}
????????///?
????????///?取得Access?Token
????????///?
????????///?臨時Authorization?Code
????????///?Dictionary
????????public?static?Dictionaryject>?get_access_token(string?code)
????????{
????????????//獲得配置信息
????????????oauth_config?config?=?oauth_helper.get_config(“feixin“);
????????????string?send_url?=?“https://i.feixin.10086.cn/oauth2/access_token?grant_type=authorization_code&code=“?+?code?+?“&client_id=“?+?config.oauth_app_id?+?“&client_secret=“?+?config.oauth_app_key?+?“&redirect_uri=“?+?Utils.UrlEncode(config.return_uri);
????????????//發送并接受返回值
????????????string?result?=?Utils.HttpGet(send_url);
????????????if?(result.Contains(“error“))
????????????{
????????????????return?null;
????????????}
????????????try
????????????{
????????????????Dictionaryject>?dic?=?JsonMapper.Toobjectject>>(result);
????????????????return?dic;
????????????}
????????????catch
????????????{
????????????????return?null;
????????????}
????????}
????????///?
????????///?獲取登錄用戶自己的詳細信息
????????///?
????????///?臨時的Access?Token
????????///?JsonData
????????public?static?Dictionaryject>?get_info(string?access_token)
????????{
????????????string?send_url?=?“https://i.feixin.10086.cn/api/user.json?access_token=“?+?access_token;
????????????//發送并接受返回值
????????????string?result?=?Utils.HttpGet(send_url);
????????????if?(result.Contains(“error“))
????????????{
????????????????return?null;
????????????}
????????????try
????????????{
????????????????Dictionaryject>?dic?=?JsonMapper.Toobjectject>>(result);
????????????????return?dic;
????????????}
????????????catch
????????????{
????????????????return?null;
????????????}
????????}
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????3891??2014-11-25?21:59??SuperShopping\API\API.csproj
?????文件??????30720??2017-10-05?11:29??SuperShopping\API\bin\Debug\API.dll
?????文件?????161280??2017-10-05?11:29??SuperShopping\API\bin\Debug\API.pdb
?????文件??????45056??2017-10-05?11:29??SuperShopping\API\bin\Debug\BLL.dll
?????文件?????294400??2017-10-05?11:29??SuperShopping\API\bin\Debug\BLL.pdb
?????文件??????59392??2017-10-05?11:29??SuperShopping\API\bin\Debug\Common.dll
?????文件?????159232??2017-10-05?11:29??SuperShopping\API\bin\Debug\Common.pdb
?????文件?????214528??2017-10-05?11:29??SuperShopping\API\bin\Debug\DAL.dll
?????文件?????417280??2017-10-05?11:29??SuperShopping\API\bin\Debug\DAL.pdb
?????文件??????17920??2017-10-05?11:29??SuperShopping\API\bin\Debug\DBUtility.dll
?????文件??????52736??2017-10-05?11:29??SuperShopping\API\bin\Debug\DBUtility.pdb
?????文件??????49664??2010-07-28?14:32??SuperShopping\API\bin\Debug\LitJSON.dll
?????文件??????67072??2017-10-05?11:29??SuperShopping\API\bin\Debug\Model.dll
?????文件?????495104??2017-10-05?11:29??SuperShopping\API\bin\Debug\Model.pdb
?????文件????1247910??2017-08-08?19:41??SuperShopping\API\bin\源碼必讀.pdf
?????文件???????2217??2014-11-25?21:22??SuperShopping\API\OAuth\feixin_helper.cs
?????文件???????2571??2014-11-25?21:22??SuperShopping\API\OAuth\kaixin_helper.cs
?????文件???????1296??2014-11-25?21:22??SuperShopping\API\OAuth\oauth_config.cs
?????文件???????1190??2014-11-25?21:22??SuperShopping\API\OAuth\oauth_helper.cs
?????文件???????5004??2014-11-25?21:22??SuperShopping\API\OAuth\qq_helper.cs
?????文件???????3718??2014-11-25?21:22??SuperShopping\API\OAuth\renren_helper.cs
?????文件???????3456??2014-11-25?21:22??SuperShopping\API\OAuth\sina_helper.cs
?????文件???????2356??2014-11-25?21:22??SuperShopping\API\OAuth\taobao_helper.cs
?????文件????1247910??2017-08-08?19:41??SuperShopping\API\OAuth\源碼必讀.pdf
?????文件???????7090??2017-10-05?11:29??SuperShopping\API\obj\Debug\API.csproj.FileListAbsolute.txt
?????文件??????92989??2017-10-05?11:29??SuperShopping\API\obj\Debug\API.csprojResolveAssemblyReference.cache
?????文件??????30720??2017-10-05?11:29??SuperShopping\API\obj\Debug\API.dll
?????文件?????161280??2017-10-05?11:29??SuperShopping\API\obj\Debug\API.pdb
?????文件???????6318??2017-10-05?11:25??SuperShopping\API\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
?????文件??????21157??2014-11-27?10:23??SuperShopping\API\obj\Debug\ResolveAssemblyReference.cache
............此處省略2680個文件信息
評論
共有 條評論