This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ------------------------------------------------------- | |
# ROOT CA (to be imported in client machine trust store) | |
# ------------------------------------------------------- | |
# 1. Generate root CA key | |
openssl genrsa \ | |
-out rootCA.key 4096 | |
# 2. Create self-signed root certificate authority | |
openssl req -x509 -new -nodes \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using AirtableApiClient; | |
namespace Airtable | |
{ | |
class AirtableHelper |