http://merchant.openapi.eleme.io/merchant.html#id215

 class Program
{
static void Main(string[] args)
{
EleMakSign.SignValue.Add("consumer_key", "");
//EleMakSign.SignValue.Add("consumer_secret", "87217cb263701f90316236c4df00d9352fb1da76");
EleMakSign.SignValue.Add("timestamp", "");
//EleMakSign.SignValue.Add("food_id", "20385638");
//EleMakSign.SignValue.Add("name", "肥牛套餐 + 可乐");
//EleMakSign.SignValue.Add("description", "精选五星肥牛,御用厨师:李大胖,倾情烹制");
//EleMakSign.SignValue.Add("stock", 1000);
//Root r = new Root() { key1 = "value1", key2 = "value2" }; //EleMakSign.SignValue.Add("json", JsonConvert.SerializeObject(r)); string val=EleMakSign.genMakSig("http://v2.openapi.ele.me/restaurant/62028381/", EleMakSign.SignValue, EleMeConfig.consumer_secret);
Console.Write(val); //获取订单
//
string requrl = "http://v2.openapi.ele.me/order/new/"; EleMakSign.SignValue.Clear();
string consumer_key="";
EleMakSign.SignValue.Add("consumer_key", consumer_key);
string timsp=ElemeMakSignHelper.GetTimeStamp();
EleMakSign.SignValue.Add("timestamp",timsp );
string consumer_secret="87217cb263701f90316236c4df00d9352fb1da76";
string restaurant_id="";
EleMakSign.SignValue.Add("restaurant_id", restaurant_id);
string sig=EleMakSign.genMakSig(requrl, EleMakSign.SignValue, consumer_secret); EleMakSign.SignValue.Clear();
EleMakSign.SignValue.Add("consumer_key", consumer_key);
EleMakSign.SignValue.Add("timestamp",timsp );
EleMakSign.SignValue.Add("restaurant_id", restaurant_id);
EleMakSign.SignValue.Add("sig", sig); string str = ElemeMakSignHelper.concatParams(EleMakSign.SignValue);
str = requrl + "?" + str;
string result=HttpUtilsHelper.HttpGet(str,"");
Console.Write(result);
Console.ReadKey();
//字符串a
//字符串b
//字符串c }
}
 /// <summary>
/// ele 签名
/// </summary>
public class EleMakSign
{ //对参数进行排序得到 字符串A
//将所有参数(sig除外)按照参数名的字母顺序排序,并用 & 连接:
//consumer_key=7284397484&timestamp=1374908054 public static SortedDictionary<string, object> SignValue = new SortedDictionary<string, object>(); /**
* 设置某个字段的值
* @param key 字段名
* @param value 字段值
*/
public void SetValue(string key, object value)
{
SignValue[key] = value;
} /**
* 根据字段名获取某个字段的值
* @param key 字段名
* @return key对应的字段值
*/
public object GetValue(string key)
{
object o = null;
SignValue.TryGetValue(key, out o);
return o;
} /**
* 判断某个字段是否已设置
* @param key 字段名
* @return 若字段key已被设置,则返回true,否则返回false
*/
public bool IsSet(string key)
{
object o = null;
SignValue.TryGetValue(key, out o);
if (null != o)
return true;
else
return false;
} public static string sortedToString(SortedDictionary<string, object> SignValue, string key)
{
string str = "";
foreach (var item in SignValue)
str += item + key;
return str;
} public static string genMakSig(string pathUrl, SortedDictionary<string, object> dics,
string consumerSecret)
{
string str = ElemeMakSignHelper.concatParams(dics);
str = pathUrl + "?" + str + consumerSecret;
System.Security.Cryptography.SHA1 sha1 = System.Security.Cryptography.SHA1.Create();
return ElemeMakSignHelper.byte2hex(sha1.ComputeHash(Encoding.UTF8.GetBytes(ElemeMakSignHelper.byte2hex(Encoding.UTF8.GetBytes(str)))));
} }

elemksign

  /// <summary>
/// 饿了么商家信息配置
/// consumer_key: 0170804777
///consumer_secret: 87217cb263701f90316236c4df00d9352fb1da76
///restaurant_id: 62028381
///restaurant_name: 饿了么开放平台测试
///餐厅下单测试地址: http://r.ele.me/openapi-test
///关于 POST / PUT 请求头中 contennt_type 的说明:
///除特别声明需要指定的请求头(如图片接口的图片内容参数 file,使用 multipart/form-data )之外,
///其他接口默认使用 application/x-www-form-urlencoded
/// </summary>
public static class EleMeConfig
{
public static string comsumer_key = "";
public static string consumer_secret = "87217cb263701f90316236c4df00d9352fb1da76";
public static int restaurant_id = ;
public static string reqBaseUrl = "http://v2.openapi.ele.me/restaurant/62028381/";
}

饿了么商家信息配置

    public static class ElemeMakSignHelper
{ public static string concatParams(SortedDictionary<string, object> dics)
{
string str = "";
foreach (var key in dics.Keys)
{
object tval = "";
if (dics.TryGetValue(key, out tval))
{
//string tkey = EleMakSign.UrlEncode(key);
//string ttval = EleMakSign.UrlEncode(tval.ToString());
string tkey = key;
string ttval = tval.ToString();
str += "&" + tkey + "=" + ttval;
}
}
return str.Substring();
} public static string byte2hex(byte[] b)
{
StringBuilder enText = new StringBuilder();
int i;
for (int offset = ; offset < b.Length; offset++)
{
i = b[offset];
if (i < )
i += ;
if (i < )
enText.Append("");
enText.Append(ElemeMakSignHelper.toHexString(i));
}
return enText.ToString();
} private static string toHexString(int i)
{
return ElemeMakSignHelper.toUnsignedString(i, );
}
private static String toUnsignedString(int i, int shift)
{
char[] buf = new char[];
int charPos = ;
int radix = << shift;
int mask = radix - ;
do
{
buf[--charPos] = digits[i & mask];
i = foo(i, shift);
} while (i != ); return new String(buf, charPos, ( - charPos));
}
public static int foo(int x, int y)
{
int mask = 0x7fffffff; //Integer.MAX_VALUE
for (int i = ; i < y; i++)
{
x >>= ;
x &= mask;
}
return x;
}
public static char[] digits = {
'' , '' , '' , '' , '' , '' ,
'' , '' , '' , '' , 'a' , 'b' ,
'c' , 'd' , 'e' , 'f' , 'g' , 'h' ,
'i' , 'j' , 'k' , 'l' , 'm' , 'n' ,
'o' , 'p' , 'q' , 'r' , 's' , 't' ,
'u' , 'v' , 'w' , 'x' , 'y' , 'z'
}; /// <summary>
/// 获取时间戳
/// </summary>
/// <returns></returns>
public static string GetTimeStamp()
{
TimeSpan ts = DateTime.UtcNow - new DateTime(, , , , , , );
return Convert.ToInt64(ts.TotalSeconds).ToString();
}
}

ElemeMakSignHelper

  /// <summary>
/// http get post helper class
/// </summary>
public static class HttpUtilsHelper
{
public static string HttpGet(string Url, string postDataStr)
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url + (postDataStr == "" ? "" : "?") + postDataStr);
request.Method = "GET";
request.ContentType = "text/html;charset=UTF-8"; HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream myResponseStream = response.GetResponseStream();
StreamReader myStreamReader = new StreamReader(myResponseStream, Encoding.GetEncoding("utf-8"));
string retString = myStreamReader.ReadToEnd();
myStreamReader.Close();
myResponseStream.Close(); return retString;
} public static string HttpPost(string Url, string postDataStr)
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url);
request.Method = "POST";
request.ContentType = "application/json;charset=UTF-8";
string paraUrlCoded = postDataStr;
byte[] payload;
payload = System.Text.Encoding.UTF8.GetBytes(paraUrlCoded);
request.ContentLength = payload.Length;
Stream writer = request.GetRequestStream();
writer.Write(payload, , payload.Length);
writer.Close();
System.Net.HttpWebResponse response;
response = (System.Net.HttpWebResponse)request.GetResponse();
System.IO.Stream s;
s = response.GetResponseStream();
string StrDate = "";
string strValue = "";
StreamReader Reader = new StreamReader(s, Encoding.UTF8);
while ((StrDate = Reader.ReadLine()) != null)
{
strValue += StrDate + "\r\n";
}
return strValue;
}
}

HttpUtilsHelper

完整代码在:http://download.csdn.net/detail/u010683837/9555239

05-07 15:06