jpush-api-csharp-client icon indicating copy to clipboard operation
jpush-api-csharp-client copied to clipboard

JPush's officially supported C# client library for accessing JPush APIs. 极光推送官方支持的 C# 版本服务器端 SDK。

Results 12 jpush-api-csharp-client issues
Sort by recently updated
recently updated
newest added

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 9.0.1 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

支持一个服务端推送多个极光app。

DOC:[https://docs.jiguang.cn/jpush/server/push/rest_api_v3_push/#notification](https://docs.jiguang.cn/jpush/server/push/rest_api_v3_push/#notification)

参见:下面链接的`解绑设备与别名的绑定关系`: [http://docs.jiguang.cn/jpush/server/push/rest_api_v3_device/](http://docs.jiguang.cn/jpush/server/push/rest_api_v3_device/)

https://github.com/jpush/jpush-api-csharp-client/blob/4d98f204d5f7855e59ffc88c3412f5a82c3aca0b/Jiguang.JPush/Model/Notification.cs#L63

JPushClient类中 public static System.Net.Http.HttpClient HttpClient 静态对象 https://github.com/jpush/jpush-api-csharp-client/blob/master/Jiguang.JPush/JPushClient.cs

文档上rest api有sound参数,Model里没有 ![image](https://user-images.githubusercontent.com/38374049/81529242-03b5ab80-9391-11ea-9f75-f252ed090a38.png) ![image](https://user-images.githubusercontent.com/38374049/81529293-28aa1e80-9391-11ea-8674-ad192bdc7505.png) 只能自己加一个上去 ![image](https://user-images.githubusercontent.com/38374049/81535594-aaec1000-939c-11ea-817f-db8262c78a68.png)

sdk里边的模型如下: ```c# public class SmsMessage { [JsonProperty("delay_time")] public int DelayTime { get; set; } [JsonProperty("temp_id")] public long TempId { get; set; } [JsonProperty("temp_para", NullValueHandling = NullValueHandling.Ignore)] public Dictionary TempPara {...