Hi
I’m trying to set up a news feed by category and by country on the apitube.io website, I’m still running into an error. I hope the community can help me.
import requests
url = “https://api.apitube.io/v1/news/everything”
querystring = {
“per_page”: 30,
“api_key”: “KEY”,
“category.name”: “real estate”
}
response = requests.request(“GET”, url, params=querystring)
print(response.text)