In the realm of web development and API design, HTTP methods play a crucial role. Two such methods, PUT and PATCH, are often used for updating resources, but they differ significantly in their approach. Let’s delve into the distinctions between these methods to gain a comprehensive understanding of when and how to use them. PUT… Continue reading Difference Between PUT and PATCH Request
Tag: https
HTTPS GET vs POST for a Portal to NetSuite data sync API
The choice between using HTTPS GET or POST for a data sync API between NetSuite and portal storage depends on the specific requirements and use case of the application. GET requests should be used for retrieving data from the server(NetSuite records), and they can be cached and bookmarked. However, they have limitations on the amount… Continue reading HTTPS GET vs POST for a Portal to NetSuite data sync API
Added a new configuration property
With the 2023.1.2 release Added a new configuration property, Add Headers to SSP Responses, to provide a field in which to enter your security headers. This new property appears in the Advanced tab under the Security subtab.See the following help topics for more information about security headers: HTTPS Header Information Security Subtab Updated text and translation context notes to comply… Continue reading Added a new configuration property
POST Request With Response using AJAX
jQuery provides several methods for AJAX functionality. With the jQuery AJAX methods, you can request text, HTML, XML, or JSON from a remote server using both HTTP Get and HTTP Post – And you can load the external data directly into the selected HTML elements of your web page! The ajax() method is used to… Continue reading POST Request With Response using AJAX
How to Check the SSL certificate of a particular domain is valid or not in the browser.
For checking the validity date of SSL certificate of a domain follow the steps given below: (Currently in the example showing steps in chrome web browser other browsers also have similar steps) Load the domain in the browser you want to test. Click on the padlock icon and then click the connection secure: 3. Then… Continue reading How to Check the SSL certificate of a particular domain is valid or not in the browser.
406-Not Acceptable Response in HTTP
HTTP Error 406 is usually returned when the requested file exists but cannot be used as the client system doesn’t understand the format of the return response. Your backend service is saying that the response type it is returning is not provided in the Accept HTTP header in your Client request. Add the accept header to resolve… Continue reading 406-Not Acceptable Response in HTTP