23 lines
518 B
C#
23 lines
518 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public partial class PostHeader
|
|
{
|
|
/// <summary>
|
|
/// 加密算法拼接密钥
|
|
/// </summary>
|
|
static string key = "uUi_UI1oMKWo0VOSN1zme17Z70-FlAv3Lcx2mNhoYe4=";
|
|
|
|
|
|
/// <summary>
|
|
/// 头部包含密钥
|
|
/// </summary>
|
|
static string accessKey = "0SoE48O9sayjkG8J";
|
|
|
|
/// <summary>
|
|
/// post通用的url
|
|
/// </summary>
|
|
public static string PostUrl = "http://dev_openapi.kedrgame.com/api/v1/";
|
|
}
|