Forum Discussion
VikasB
Boss
I would also suggest you try it with few calls instead of too many calls. It would be great if you can share the code snippets.
As you mentioned that on some other instance, i am not facing such issues. It means the issue is not with multiple calls. You should reach out to support for instance-specific issues.
Shivshankar
8 years agoAce
request_str is string with 1000 ideas comma seperated.
var idArray=request_str.split(',');
var url1=endpointi?request_str="someId"&statusid="StatusId"&post_comment="postComment";
var saveData = $.ajax({
type: 'POST',
dataType: "json",
async:"false",
url: url1,
error: function (jqXHR, exception) {
//some code
},
success: function(resultData) {
//somecode
}
});
This code is giving error 429
Related Content
- 2 years ago
- 2 years ago
- 9 months ago
- 3 years ago