WebHook implementation example? [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Reviewer's Note
The title is exactly as it is supposed to be, even if the accepted answer suggests WebSockets.
We are building an application where customer will send data to our application. Our application have different events, like validating the data, saving it to data base and etc. I want to notify the client about the status of their data, like the data is validated, data is saved in SQL, etc. Our backend service will be in C#. I am new to this WebHook concept and have never implemented this before. I am looking for code examples for both sending and receiving side of WebHooks.
I would really appreciate any help.

I think you are looking for WebSockets,
and to 'push' notification to the client, the proven and most popular .NET solution is SignalR, last time I checked :)
There are alternatives too, GitHub search: websockets c#
Most WebSocket libs will fallback to legacy ways, like polling, when WebSockets are not supported.

Related

Using FastAPI with C# [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 days ago.
This post was edited and submitted for review 2 days ago and failed to reopen the post:
Original close reason(s) were not resolved
Improve this question
I am developing a Windows "agent" using C# that performs some tasks, and then sends information back to a centralized server. In this case, we've created a Linux-based server which is using FastAPI. It is extremely rare that the server would communicate back to the client, and 99% of all the traffic (when working) would be the client sending information to the server via FastAPI.
I can't seem to find any example code that shows interacting with FastAPI from a client, using C#. Everything I've seen seems to be written in Python.
Would anyone be able to help me find some example code on how to submit information to FastAPI using C#?

How create app to app communication in c#? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I have problem, because I can send data from program for example program1 to program2.
I see that can use events, observer but the problem is how.
Sorry but I not have any code.
Can anybody take here example or link for help to understand events and observers?
Let me quickly refer you to Microsoft Docs. This may or may not be exactly what you need, but it should point you in the right direction.
The linked docs list the following options:
Clipboard
COM
Data Copy
DDE
File Mapping
Mailslots
Pipes
RPC
Windows Sockets
There are many articles/guides on how to implement each of those options, so all you really have to do is to Google.
There are also obviously many other options, such as sending data over HTTP or any other easy-to-setup-and-use communications protocol already implemented in .NET (which is presumably what you are using).

Send notification for iOS using .net or C# [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to send push notification on iOS device using C# or .net code. But I always failed to achieve this. Please refer best tutorial or code for this.
This seems to be a broad question and since you have only asked for the tutorial links have a look at following:
Add iPhone push notification using ASP.NET server
https://github.com/Redth/PushSharp
In a purely .Net world you might well use a technology called SignalR for this - I would look and see if there are SignalR clients available for iOS. I would be surprised if there were not...

Instagram Real-time API in C# [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there any C# wrapper that supports Instagram Real-time API? I'd like to subscribe and receive updates in my application.
I've checked InstaSharp, but it doesn't seem to have the real-time functionality.
I have looked into this once before and I didn't see anything that worked quite like how you are thinking. I think you have to almost create everything from the ground up. How I am not exactly sure though. I'll try to do some research on this and post back if I find anything.
Best of Luck!
I'm working on an application that interacts with Instagram API, and was looking for some kind of wrapper too, but I didn't found one that fits my needs. So, I began to develop my own Instagram wrapper. Is not a full wrapper, but is working, and can show you how go ahead...
I'm using it to subscribe me to real-time updates, and request for data (mostly media) converting json into .Net objects.
Download it from here: https://www.dropbox.com/sh/3y0e0srx5rm1g88/AAB48GJKNTUAK_BniH5Cvf7ua?dl=0

OSS Twitter Clone written in .NET [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Does anyone know of a twitter clone written in .NET (or ideally C#)?
I wanna experiment with a private twitter network between some friends and work colleagues.
http://www.yonkly.com/. Done with Asp.net mvc
Have you taken a look at Witty? It is a a Twitter client that matches you criteria, I am not aware of any server software though.
I know TeleTwitter. Though its development is stalled, it does everything I need.
I don't think there are any Twitter implementations in C#. If you are looking for C# twitter client, then Witty is the way to go (for now.. I'm working on a new one based on Witty libraries)
http://code.google.com/p/wittytwitter/

Categories