I have a Python Code As given below that I wish to use Access VBA to do the same thing.
Here is the Python Code example:
import datetime
import pytz
import hmac
import hashlib
import base64
username = "username"
password = "password"
access_token = "access_tok en"
secret_key = "secret_key "
date=datetime.d atetime.now(tz= pytz.utc).astim ezone(pytz.time zone('US/Pacific')).strf time('%m%d%Y')...