When building SharePoint Framework solutions, you might want to consume public APIs, such as stock or weather information. This article outlines how to connect to public APIs in SharePoint Framework solutions.
Note
In this article, public and anonymous APIs are used interchangeably. This article is about connecting to APIs, that don't require authentication at all or are secured with a function/API key that can be passed via query string parameters. See other pages in this section of the documentation for more information about connecting to the SharePoint APIs or APIs secured with Azure AD.
Connect to anonymous APIs using the HttpClient
The easiest way, to connect to anonymous APIs in your SharePoint Framework solutions, is by using the HttpClient provided as a part of the SharePoint Framework. For example, to get dummy information from the Typicode service, you would execute:
Similarly to the SPHttpClient you use for connecting to SharePoint APIs, the HttpClient offers you similar capabilities for running the most common web requests. If necessary, you can use its options, to configure requests.
For example, to specify request headers, you would use the following code:
When using the HttpClient, there are a few things that you should take into account.
Authentication cookies not included
While the HttpClient is similar to the SPHttpClient, it doesn't include authentication cookies in its requests. So if you were to use it to connect to SharePoint APIs, your requests would fail with a 401 Unauthorized response.
Part of the SharePoint Framework
The HttpClient is part of the SharePoint Framework and you don't need any additional dependencies to start using it. It is already available on the page that is why using it doesn't cause additional performance overhead on runtime.
This module will teach you how to use external APIs in your SharePoint Framework projects. You will learn how to use data from anonymous APIs, REST APIs secured with Microsoft Entra ID, and Microsoft Graph.