Forum Discussion
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
It works fine on other instances means might be (if you are creating the id's array manually) in this certain instance, some of the ideas do not exist with the given id in your array. So can you give it a shot with few ids(like 5 ids)which exist in this instance? So both the things(too many calls and valid ids) can be tested in a single shot. Share the endpoint call you are using if it does not work for you.
Related Content
- 2 years ago
- 2 years ago
- 9 months ago
- 3 years ago