Tag: HTTP

Adding Authentication to your HTTP Triggered Azure Functions
Adding Authentication to your HTTP Triggered Azure Functions
Blog Posts

Azure Functions are great! HTTP triggered Azure Functions are also great, but there’s one downside. All HTTP triggered Azure Functions are publicly available. While this might be useful in a lot of scenario’s, it’s also quite possible you don’t want ‘strangers’ hitting your public endpoints all the time. One way you can solve this is… READ MORE

A way to deal with HTTP error responses
A way to deal with HTTP error responses
Blog Posts

When I read Ken’s blog post about an issue he had with a certain class in a project he is working on, his solution didn’t sit quite right with me. I know that in Ken’s case, the code couldn’t be improved any further because of dependencies on other bits. Nothing can stop us however from having a… READ MORE

Angular HTTP Tips for Success
Angular HTTP Tips for Success
Blog Posts

I love working with the Angular HttpClient. It is easy to use and was designed to work with RxJS. It is vastly different from the AngularJS implementation, if you’re curious I wrote about these differences here. However, there is one common issue that developers fall victim to. The issue really relates to TypeScript generics. I have also written about generics in TypeScript here. But in… READ MORE

How to fix Angular 4 API call issues
How to fix Angular 4 API call issues
Blog Posts

Angular 4 is great and comes loaded with more features. You might be wondering why Angular 3 was skipped. They made it this way to unify all Angular components with the Angular Router (already developed up to version 3) which had to be upgraded to v4. So, Angular 4 was the chosen name to mean… READ MORE