Hello
Can anyone with experience of SMS execution in Marketo help me please.
We have had SMS capability built into our Marketo.
This is the flow:
We are having issues with the 0auth token running out before the SMS’s can send. The 0auth token only stays open for 900 seconds.
But how many SMSs that are sent each time varies, I can see this is sometimes due to other processing happening in Marketo as it looks like webhooks are the lowest priority.
Is this expected behavior? And the expected set up of SMS capabilities in Marketo?
Thank you in advance for any help on this topic.
Solved! Go to Solution.
This is a poor choice of architecture. It has a built-in race condition and isn’t reliable for professional use. It also cuts your sending capacity in half even when it works!
If an OAuth token is required, you should send your webhook requests to an intermediate API Gateway service that manages (i.e. caches) the token and sends the SMS.
This is a poor choice of architecture. It has a built-in race condition and isn’t reliable for professional use. It also cuts your sending capacity in half even when it works!
If an OAuth token is required, you should send your webhook requests to an intermediate API Gateway service that manages (i.e. caches) the token and sends the SMS.
Thanks @SanfordWhiteman that is helpful