Skip to content

Instantly share code, notes, and snippets.

@tahacankurt
Last active August 22, 2023 13:40
Show Gist options
  • Save tahacankurt/6a206695f1a12513144923ab56f8b1f6 to your computer and use it in GitHub Desktop.
Save tahacankurt/6a206695f1a12513144923ab56f8b1f6 to your computer and use it in GitHub Desktop.
Next.js Get Initial Props
Articles.getInitialProps = async function() {
const apiPath = "https://newsapi.org/v2/";
const res = await fetch(`${apiPath}everything?q=bitcoin&from=2019-11-02&sortBy=publishedAt&apiKey=<ApiKey>`);
const data = await res.json();
return {
articles: data.articles
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment