by keith | May 9, 2023 | Development
Sometimes need to get a quick bearer token to test an API in postman or python. Rather than going through the tedious process of setting up an App or fiddling with OAuth, the salesforce cli tool can be used to get a token to use in API queries.First step is...
by keith | Mar 20, 2023 | Development
This is a small code snippet demonstrating interacting with an Azure PAAS Redis Cache import redis import sys redis_fqdn = “” redis_key = “” r = redis.StrictRedis(host=redis_fqdn, port=6380, password=redis_key, ssl=True) # Test latency to redis...