Howdy, One of my authorized users has been having issues loging into the DEV site. We changed his username for logging in (we have multiple accounts). And now when he tries to get in to the Application Page, it goes straight to an error page. Any way to easily fix this on my end?
... View more
Thanks to the Dev team for helping me pinpoint my issues. I am using JS and AXIOS. Turns out my issue was my code verifier and the code challenge. The code verifier was too long (only needs to be 43-125 characters long) and my code challenge was not matching up with the verifier. I fixed it by: 1) adjusting my code verifier, so it only produced a code within the required limits 2) moving the authorizationURL constructor out of the *main function 3) used async/await for the functions that generated the code challenge and the authorizationURL constructor I could go into more detail about this if anyone needs this in the future. Example of how my program works: function generateVerifier(){}; async function generateChallenge(){}; async function generateAuthorizationURL(){}; //*main function async function initiateAuthorization(){ generateVerifier(); await generateChallenge(); await generateAuthorizationURL(); };
... View more
I've been trying to build a local app that can access the API, so I can build specific email reports. I'm able to get an authorization code, but once I make a POST request to the Access Token endpoint, I get '{"error":"invalid_grant","error_description":"PKCE verification failed."}' I have double-checked that the verification code and its hash "match". I'm using Axios for HTTP calls. Could this be a CORS issue?
... View more
So I noticed that the date sent in reporting is based on LAST SENT. Is there an option to download reports in order of when they were FIRST SENT? And why are emails being resent? Is this because of bounced emails? Is there a way to get reports with the subject lines attached?
... View more
The company I work for seems to have a similar issue (we copy emails all the time). But it doesn't happen every time which is also weird. Is there any update on this issue?
... View more