forked from Redth/PushSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChromePushChannelSettings.cs
41 lines (33 loc) · 1007 Bytes
/
ChromePushChannelSettings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using System.Collections.Generic;
using System.Text;
using PushSharp.Core;
namespace PushSharp.Google.Chrome
{
public class ChromePushChannelSettings : IPushChannelSettings
{
private const string CHROME_SEND_URL = "https://www.googleapis.com/gcm_for_chrome/v1/messages";
private const string CHROME_AUTH_URL = "https://accounts.google.com/o/oauth2/token";
public ChromePushChannelSettings(string clientId, string clientSecret)
{
this.ClientId = clientId;
this.ClientSecret = clientSecret;
this.Url = CHROME_SEND_URL;
this.AuthUrl = CHROME_AUTH_URL;
}
public string ClientId { get; private set; }
public string ClientSecret { get; private set; }
public string RefreshToken { get; set; }
public string AuthorizationCode { get; set; }
public string Url { get; private set; }
public string AuthUrl { get; private set; }
public void OverrideUrl(string url)
{
Url = url;
}
public void OverrideAuthUrl(string url)
{
AuthUrl = url;
}
}
}