How to read a gmail email body with Go?

This afternoon I ran across a rather interesting question on Stack Overflow Gmail API shows empty body when getting message. The author of the question was trying to parse the raw email body from a Gmail get response but the raw field was always returning null. It didn’t take me […]


How to read gmail message body with python?

In this post we are going to look at the Gmail API and how to request the full message body. Reading message data from the Google Gmail API can be a little more complicated then you think. Gmail itself is an SMTP or mail server. Mail format is not as […]


grpc

How to make your first gRPC application with C# .Net. Fast! 2

In this post we are going to look at gRPC, What is it? Why would you use it? How is it different from a standard Rest API endpoint. Then finally we are going to create a simple app using gRPC. What is gRPC? gRPC is a modern open source high […]


Simple how to Upload file to google drive with Go Lang.

The google api go client library has been around for a quite some time. It can be used to access a all of the google discovery services apis. Google drive, google sheets, YouTube api are just a few of the Discovery services apis. I thought today we would have a […]


Simple how to Integrate Google Drive API with PHP. 2

Do you want to Integrate Google Drive API with PHP? In this tutorial we will look at how to simply integrate the google drive api with php. If you want to integrate your PHP script to your google drive account doesn’t have to be hard. In fact using the PHP […]


Certificate

How to use X509Certificate2 with pem file. 2

The X509Certificate2 method is used to load cryptography signatures most often in my experience taking the the form of a p12 file. Normally I just store this certificate in my project and then have the password for the file in a secret storage location like Azure secret store. However the […]


Extract .pub file from a P12 certificate with C#

In cryptography, PKCS #12 defines an archive file format for storing many cryptography objects as a single file. It is commonly used to bundle a private key with its X.509 certificate or to bundle all the members of a chain of trust. When working with Oauth2 you may find that the client_credentials grant type supports the user of P12 files. […]


Configuring a password for KeyCloak running in Docker. 1

Starting up keycloak in a docker container using docker for windows can be a bit tricky the first time you try. For me the main issues were waiting for the container to start up and setting the admin password. Docker Hub container I have been using this Keycloak docker image […]


How to upload to Google Drive API from memory with C# 4

Google drive API standard examples. Most of if not all of the upload samples and examples for the Google drive api refer to it as file upload data. This implies that you have a file on your disk that you wish to upload. Even all of my own How to […]