I was Following a tutorial; https://www.youtube.com/watch?v=9oq7Y8n1t00&ab_channel=CodingwithJohn
I am modifing other\'s code to get the right response, here is the code structure. The problem I have here is; When I do if statement, "response.setOptions(ccResp.getValue().getOptions());"
DECLARE @obj INT DECLARE @sUrl NVARCHAR(200) = \'https:xxxxxxx.com/xxxx\' EXEC sp_OACreate \'MSXML2.ServerXMLHttp\', @obj OUT
I read many articles like https://restfulapi.net/rest-put-vs-post/ and there is mentioned that, PUT is for update records and POST for create, because PUT is idempotent. It means if I will send the sa
The things I want to do is: to get data from开发者_JAVA技巧 https://jsonplaceholder.typicode.com/ and save those data into my machine. I want to save the posts from this site. I want to do it by Sprin