ContributionsMost RecentMost LikesSolutionsRe: REST OAuth2 Account - 'Client Credentials' grant type It is working as expected, right now request can go from any node to respective server to get the token, it is round robin or LRH. We can put one enhancement to specify dedicated node should go to generate token Re: REST OAuth2 Account - 'Client Credentials' grant type Hi, Hope you are doing well! Would you mind helping to check why same oauth2 is working for one node but not for other node after march 11 release It was working fine for both the node before this, all of sudden it stoped working and we are getting 500 error messages on authorize button click. Re: REST OAuth2 Account - 'Client Credentials' grant type We are getting 500 error Re: REST OAuth2 Account - 'Client Credentials' grant type Yes marketo is not supporting oautho2. Work around is rest snap Re: REST OAuth2 Account - 'Client Credentials' grant type Hi Oauth2 is working awesome for various client I have been using. But we got a strange issues, any suggestion would be helpful. Oauth2 is working for one node but not for other node. And we are getting 500 error on authorize after march 11 release Re: How to add multiple file filter to a file poller @del, yes this is a workable solution for file poller too! but it depend on what pattern we are following to filter. Re: How to loop thru a REST snap @tlikarish , yes this is one of the option but server side code is just returning has next=true/false and next token, no page number. But we have resolved it with REST Get itself. has next=true && snap.out.totalCount < 10 Re: Snaplogic Triggered Task using an OnPremises URL through Load Balanced Groundplex Nodes @cjhoward18 , One of the special use case for caching issues , after restart it worked but in prod we don’t prefer to restart the server. Any suggestion will be helpfull. Use Case: I am experiencing a strange behavior on Prod. I had an error in one of the pipelines. I have fixed the pipeline and deployed the task. The error still persists. I have deleted the task. However, it is still being called with old version when I call the task from Postman. Re: REST GET: Has Next And Next URL Is there any snap we can use to break the loop apart from has next=true, since api response is not returning any info to break the condition. Re: How to loop thru a REST snap @j.angelevski , API response side no parameter to terminate after 10 number of iteration. We should implement another parameter next url call limit along with has next, next url for looping in rest API. Since server side design various company to company, in this case if it would have to page number concept then it was easy to handle but in this case instead of page number, it has next new token for has next =true. Alternate way we can use head snap to read first 10 iteration for next processing but rest snap still running until 1000 iteration to be completed. Is there any other snap we can consider to find some alternate for his.