Hi,
I am using Apify to scrape the web. One Endpoint awaits a json object like this:
{
"startUrls": [
{
"url": "https://www.facebook.com/example1/"
},
{
"url": "https://www.facebook.com/example2/"
}
]
}
But whatever I try I only get this with the surrounding brackets .
[
{
"startUrls": [
{
"url": "https://www.facebook.com/example1/",
"method": "GET"
},
{
"url": "https://www.facebook.com/example2/",
"method": "GET"
},
{
"url": "https://www.facebook.com/example3/",
"method": "GET"
}
]}
]
How can I modify this to only put the correct json object to the endpoint?