Facebook api – WebApi + Authenication. How to do it?
It's been a few years since I made my own project and I am trying to wrap my head around the newer way of doing things. Right now I want to have a website built in reactjs that will have…
It's been a few years since I made my own project and I am trying to wrap my head around the newer way of doing things. Right now I want to have a website built in reactjs that will have…
I'm building an API for a Twitter like site using Web API and have trouble with mapping the routes I have the following actions for the User controller: public User Get(string firstname, string lastname) public User Get(Guid id) public User…
I'm really confused as I'm trying to use Telegram's APIs after reading a lot of the documentation on http://core.telegram.org. I have registered my app and got a hash_id and all of that stuff. But I'm not sure where to begin…
I am using WebAPI PUT and DELETE methods to perform actions from my website via AJAX using jQuery. My server is Windows Server 2008 R2 with Plesk installed. POST and GET requests work just fine, but PUT and DELETE fail.…
Consider a web API method that has no side effects, but which takes binary data as a parameter. An example would be a method that tells the user whether or not their image is photoshopped, but does not permanently store…