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
Hello @CarolO11418 ,
Are you referring to the search function for the campaigns page? If so, this defaults to the "most relevant" based on what's being searched, and currently isn't able to be modified to sort by send date.
See also:
Using filters on the campaigns page
... View more