Skip to content

ryoe/pusherrestdotnet

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Pusher REST .NET project is implementation of the Pusher REST API in C#.

It provides functionality to let you trigger events using the Pusher REST API in addition to authenticating user subscription request to private and presence channels.

Trigger events

Events can be triggered with any type of data which is then serialized to JSON.

var provider = new PusherProvider(applicationId, applicationKey, applicationSecret);
var request = new ObjectPusherRequest("test_channel", "my_event", new
																	{
																		some = "data"
																	});

provider.Trigger(request);

Authenticate Private Channels

Assuming that the running application is an ASP.NET app then the private channels are authenticated using the IPusherProvider.Authenticate method with the values for the channel name and the socket ID retrieved from the Request object.

var provider = new PusherProvider(appId, appKey, appSecret);
string auth = provider.Authenticate(Request["channel_name"], Request["socket_id");
Response.Write(auth);

Authenticate Presence Channels

Presence channels are authenticated in much the same way as private channels. The only difference is that the channel data must also be passed to the IPusherProvider.Authenticate method so that it can be hashed within the authentication string.

var provider = new PusherProvider(appId, appKey, appSecret);
string auth = provider.Authenticate(Request["channel_name"], Request["socket_id");
Response.Write(auth);

About

C# implementation of the Pusher REST API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%