Empty Space
  • Home
  • Resume
  • Posts
  • Personal
  • Code
Sign in Subscribe
code

.NET HTTPS RESTful API call

  • Robin Michael

Robin Michael

27 Mar 2019

Because .NET Core 2.2 has switched over to serving from https by default on port 5001 which can be a problem when you are debugging locally use cURL and jq for API testing from the command line

Following is from the default WebAPI project

curl -X GET https://localhost:5001/api/values -H 'cache-control: no-cache' --insecure | jq '.'

Sign up for more like this.

Enter your email
Subscribe

Wraps and Lambda methods

I am working in Databricks developing a ContextManager class in python to read and write new metadata for connections, catalogs, tables, etc. As I was doing this I generalized the access pattern that seemed to be happening over and over which was get a value from Databricks. I am using
14 Mar 2026 1 min read

sed: Remove lines

I wanted to remove the first and last lines of a text file that ends each line with a newline. This is because there are delimiters that are unnecessary to processing of the file. I suggest you use sed Example input File Start Important line 1 Important line 2 File
22 Feb 2026

GitHub Actions - Part 1

Starting a series of posts on working with GitHub Actions. One of the key things is that the yml inputs for an action has a variety of triggers, but when working on a workflow I suggest always starting with a way to manually trigger an action. For this you should
03 Feb 2026 2 min read
Empty Space © 2026
Powered by Ghost