I have spreadsheet with around 900 GET requests that look like this "http://www.omdbapi.com/?apikey=XXXXXXX&t=Alien"
I can pull one at the time and get the right data, but is there a way I can just dump a batch of them in postman?
I tired pasting mutiple url in the field but I get the issue that request url size is too big.
Related
I'm trying to scrape a bunch of images off a website called Pexel using their API. I discovered their API results never give me a value of 'total_results' greater than 8000, although I'm sure they have more photos than that on their website. I tried a bunch of really broad search terms, and I can never get the total_results above 8000. I also kept pulling the next page, and confirmed it stopped returning results once total_results was reached.
If I want to run a search and download more than 8000 results, is there a way around this limitation? I'm also tempted to try another photo sharing website and see if they don't have an arbitrary limit like this.
Here's the documentation to the specific REST-API call I'm using:
https://www.pexels.com/api/documentation/?#photos-search
I am getting confused with the difference with GET and POST.
Can you provide some good resource or explanation with examples.
I'm just getting started with this.
Thank you.
GET is for retrieving data from the URL - for example, example.com?tab=settings
'tab' is what you would use to 'GET' the data from
POST is more secure, and allows you to send or retrieve the data directly
Other points mentioned here are:
GET requests can be cached
GET requests remain in the browser history
GET requests can be bookmarked
GET requests should never be used when dealing with sensitive data
GET requests have length restrictions
GET requests are only used to request data (not modify)
POST requests are never cached
POST requests do not remain in the browser history
POST requests cannot be bookmarked
POST requests have no restrictions on data length
I'm trying to get the URLs of multiple images using Imgur's Gallery Search API.
I ran a test of the API using Postman and was able to get a response.
I then used the q_size_px parameter to specify the size of the image to get.
Status is 200, but I didn't get anything back.
Is there a way to specify multiple parameters for a query?
I want to specify the image size and multiple image types.
From https://api.imgur.com/endpoints/gallery#gallery-search :
SO if you use q_size_px it will ignore you q parameter
So you cant search for multi type and size in same time, you need to do multiple request for each file extenssion
I have set up the connection in Qliksense and got it worked. Now HubSpot returns paginated contacts of maximum 100 for which I need to get pagination done for all the contacts to get.
This setting doesn't work as there is no total records path i see in the json response to paste in here. Is there any way i can get this done for QlikSense.
Thanks
If you are using REST Connector for Qlikview/Qliksense there is pagination parameter. You can fins more info here:
https://help.qlik.com/en-US/connectors/Subsystems/REST_connector_help/Content/Connectors_REST/Create-REST-connection/Pagination-scenarios.htm
Although there are so much custom REST implementation that sometimes is easier is just make manually a lot of GET calls by changing parameters with every loop and exit loop when there is no data.
I'm using google spreadsheet api to visualize data for users and I want to get feedback if data is wrong. I found how to get data from server side to spreadsheet here
https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/get
but i can't find out how to request sending data from spreadsheet to server. what i thought is write down url in one cell. so if user click url then get data from user's spreadsheet.
Can you suggest me better idea?
thanks in advance.