Learn how to implement user authenticationclient_id, client_secret, and redirect URIs. They are a type of developer credential.

You can use different types of authentication to access secured ArcGIS services
In this tutorial, you will build an app that implements user authentication using OAuth credentials so users can sign in and be authenticated through ArcGIS Online to access the ArcGIS World Traffic service.
Prerequisites
Before starting this tutorial:
-
You need an ArcGIS Location Platform or ArcGIS Online account.
-
Your system meets the system requirements.
-
The ArcGIS Maps SDK for Qt, version 300.0.0 or later is installed.
-
The Qt 6.8.2 software development framework or later is installed.
Download the ArcGIS Maps SDK for Qt Toolkit
The open-source ArcGIS Maps SDK for Qt Toolkit contains UI components and utilities to help simplify your Qt app development. For this OAuth tutorial app we will use the toolkit that provides the Authenticator class, which has a dialog that automatically displays the proper authentication for any of the supported authentication types (OAuth, Token, HTTP Basic, HTTP Digest, SAML, PKI).
-
To configure the toolkit for use in this tutorial, you need to copy the ArcGIS Maps SDK for Qt Toolkit repository in GitHub onto your development machine.
-
You can do this by cloning the ArcGIS Maps SDK for Qt Toolkit repo (using the the URL: https://github.com/Esri/arcgis-maps-sdk-toolkit-qt.git) or downloading the .zip version of the repo and unzipping it to your preferred location on your development machine.
IMPORTANT: Make a particular note for the path to the toolkitcpp.pri file that is in the directory structure of the toolkit on your development machine. You will need to reference the path to this file later in the tutorial (for example: C:/arcgis-maps-sdk-toolkit-qt/uitools/toolkitcpp/toolkitcpp.pri).
Create OAuth credentials for user authentication
OAuth credentialsclient_id, client_secret, and redirect URIs. They are a type of developer credential.
-
Go to the Create OAuth credentials for user authentication tutorial and create OAuth credentials
OAuth credentials are an item that contains parameters required to implement user authentication or app authentication, including a using your ArcGIS Location Platformclient_id,client_secret, and redirect URIs. They are a type of developer credential.An ArcGIS Location Platform account, formerly known as an ArcGIS Developer account, is an identity associated with an ArcGIS Location Platform subscription. or ArcGIS OnlineAn ArcGIS Online account, also known as an ArcGIS Organization account, is an identity associated with an ArcGIS Online subscription. It can be used to access ArcGIS tools and develop applications with ArcGIS location services for an organization. account. -
Copy the
Client IDandRedirect URLas you will use them to implement user authenticationUser authentication is a type of authentication that allows users with an ArcGIS account to sign into an application and allow it to access ArcGIS content, services, and resources on their behalf. The typical authorization protocol used is OAuth2.0. later in this tutorial. Both theClient IDand theRedirect URLare found on the Settings page.
The Client ID uniquely identifies your app on the authenticating server. If the server cannot find an app with the provided Client ID, your app will be unable to authenticate.
The Redirect URL (also referred to as a callback url) is used to identify a response from the authenticating server when the system returns control back to your app after an OAuth login. Since it does not necessarily represent a valid endpoint that a user could navigate to, the redirect URL can use a custom scheme, such as urn:ietf:wg:oauth:2.0:oob and my-app://. You can configure several redirect URLs in your application definition and can remove or edit them. It’s important to make sure the redirect URL used in your app’s code matches a redirect URL configured for the application.
Develop or download
You have two options for completing this tutorial:
Option 1: Develop the code
Create a new ArcGIS Maps Qt Creator Project
-
Start Qt Creator.
-
In the top menu bar, click File > New Project.
-
In the New Project dialog, in the left frame, under Projects, select ArcGIS. Then select the ArcGIS Maps 300.0.0 Qt Quick C++ app project template (or a later version) and click Choose. This will launch the template wizard.
-
In the Project Location template, name your project AccessServicesWithOAuth. You can specify your own “create in” location for where the project will be created or leave the default. Click Next.
-
In the Define Build System template, select qmake for your build system. Click Next.
-
In the Define Project Details template, give this app a description or leave as is. For the GeoView type dropdown menu, select 2D Map. For the ArcGIS Online Basemap dropdown menu, select Topographic. Do not provide an Access Token (also called an API Key), leave it blank. We will be using OAuth for the project to access secured web mapping services, this will be discussed in a later section. Click Next.
-
In the Kit Selection template, check on the kit you previously set up when you installed Qt (Desktop Qt 6.8.2 MSVC2022 64bit or higher required). Click Next.
-
In the Project Management template, the option to Add as a subproject to root project is only available if you have already created a root project. If you have a version control system set up, you can select it in the dropdown but it is not needed to complete this tutorial. Click Finish to complete the template wizard.
Configure the .pro file
Qt .pro files contains information required by qmake to build an application, a library, or a plugin.
-
In the project Sources folder of Qt Creator, open AccessServicesWithOAuth.pro. To utilize Authenticator, add the path to where the
toolkitcpp.prifile is located on your development system (for example:C:/arcgis-maps-sdk-toolkit-qt/uitools/toolkitcpp/toolkitcpp.pri). Then add the Qt WebEngine Quick module to your project. The Qt WebEngine is used to display an OAuth sign in webpage in your app. Save and close theAccessServicesWithOAuth.profile.See the Install and setup for details on installing the Qt WebEngine on your system.
AccessServicesWithOAuth.pro35 collapsed lines#-------------------------------------------------# Copyright 2025 ESRI## All rights reserved under the copyright laws of the United States# and applicable international laws, treaties, and conventions.## You may freely redistribute and use this sample code, with or# without modification, provided you include the original copyright# notice and use restrictions.## See the Sample code usage restrictions document for further information.#-------------------------------------------------TEMPLATE = appCONFIG += c++17# additional modules are pulled in via arcgisruntime.priQT += qml quickTARGET = AccessServicesWithOAuthlessThan(QT_MAJOR_VERSION, 6) {error("$$TARGET requires Qt 6.8.2")}equals(QT_MAJOR_VERSION, 6) {lessThan(QT_MINOR_VERSION, 8) {error("$$TARGET requires Qt 6.8.2")}equals(QT_MINOR_VERSION, 8) : lessThan(QT_PATCH_VERSION, 2) {error("$$TARGET requires Qt 6.8.2")}}ARCGIS_RUNTIME_VERSION = 300.0.0include($$PWD/arcgisruntime.pri)# TODO: You need to replace the <path_to_toolkit_repo> with a valid location where the Qt Toolkit# resides on your system, example: C:/arcgis-maps-sdk-toolkit-qt/uitools/toolkitcpp/toolkitcpp.priinclude(<path_to_toolkit_repo>/uitools/toolkitcpp/toolkitcpp.pri)qtHaveModule(webenginequick) {QT += webenginequick}17 collapsed linesHEADERS += \AccessServicesWithOAuth.hSOURCES += \main.cpp \AccessServicesWithOAuth.cppRESOURCES += \qml/qml.qrc \Resources/Resources.qrc#-------------------------------------------------------------------------------win32 {include (Win/Win.pri)}
Implement user authentication using OAuth credentials
The OAuth sign in web page is implemented using the Authenticator class and the Qt WebEngine, which is part of the ArcGIS Toolkit.
-
In the project Sources folder of Qt Creator, open main.cpp. Remove these
#includestatements. These Qt types are not needed for this tutorial.main.cpp#include "AccessServicesWithOAuth.h"#include "ArcGISRuntimeEnvironment.h"#include "MapQuickView.h"#include <QDir>#include <QGuiApplication>#include <QQmlApplicationEngine> -
Add
#includestatements forQtWebEngineQuickandregister.hfor the Toolkit.main.cpp#include "AccessServicesWithOAuth.h"#include "ArcGISRuntimeEnvironment.h"#include "MapQuickView.h"#include <QtWebEngineQuick>#include "Esri/ArcGISRuntime/Toolkit/register.h" -
Add code to initialize
QtWebEngineQuick.main.cppusing namespace Esri::ArcGISRuntime;int main(int argc, char *argv[]){// Initialize the QtWebEngineQuick to use the web based login dialog.QtWebEngineQuick::initialize(); -
Add code to register the Toolkit. Then save and close main.cpp.
main.cpp67 collapsed lines// Copyright 2025 ESRI//// All rights reserved under the copyright laws of the United States// and applicable international laws, treaties, and conventions.//// You may freely redistribute and use this sample code, with or// without modification, provided you include the original copyright// notice and use restrictions.//// See the Sample code usage restrictions document for further information.//#include "AccessServicesWithOAuth.h"#include "ArcGISRuntimeEnvironment.h"#include "MapQuickView.h"#include <QtWebEngineQuick>#include "Esri/ArcGISRuntime/Toolkit/register.h"//------------------------------------------------------------------------------using namespace Esri::ArcGISRuntime;int main(int argc, char *argv[]){// Initialize the QtWebEngineQuick to use the web based login dialog.QtWebEngineQuick::initialize();QGuiApplication app(argc, argv);// Use of ArcGIS location services, such as basemap styles, geocoding, and routing services,// requires an access token. For more information see// https://links.esri.com/arcgis-runtime-security-auth.// The following methods grant an access token:// 1. User authentication: Grants a temporary access token associated with a user's ArcGIS account.// To generate a token, a user logs in to the app with an ArcGIS account that is part of an// organization in ArcGIS Online or ArcGIS Enterprise.// 2. API key authentication: Get a long-lived access token that gives your application access to// ArcGIS location services. Go to the tutorial at https://links.esri.com/create-an-api-key.// Copy the API Key access token.const QString accessToken = QString("");if (accessToken.isEmpty()){qWarning() << "Use of ArcGIS location services, such as the basemap styles service, requires" <<"you to authenticate with an ArcGIS account or set the API Key property.";}else{ArcGISRuntimeEnvironment::setApiKey(accessToken);}// Production deployment of applications built with ArcGIS Maps SDK requires you to// license ArcGIS Maps SDK functionality. For more information see// https://links.esri.com/arcgis-runtime-license-and-deploy.// ArcGISRuntimeEnvironment::setLicense("Place license string in here");// Register the map view for QMLqmlRegisterType<MapQuickView>("Esri.AccessServicesWithOAuth", 1, 0, "MapView");// Register the AccessServicesWithOAuth (QQuickItem) for QMLqmlRegisterType<AccessServicesWithOAuth>("Esri.AccessServicesWithOAuth", 1, 0, "AccessServicesWithOAuth");// Initialize application viewQQmlApplicationEngine engine;// Register the toolkitEsri::ArcGISRuntime::Toolkit::registerComponents(engine);12 collapsed lines// Add the import Pathengine.addImportPath(QDir(QCoreApplication::applicationDirPath()).filePath("qml"));// Set the sourceengine.load(QUrl("qrc:/qml/main.qml"));return app.exec();}//------------------------------------------------------------------------------ -
In Qt Creator, navigate to Resources > qml\qml.qrc > qml and open AccessServicesWithOAuthForm.qml. Add an import statement for the Toolkit.
AccessServicesWithOAuthForm.qmlimport QtQuickimport QtQuick.Controlsimport Esri.AccessServicesWithOAuthimport Esri.ArcGISRuntime.Toolkit -
Now that the toolkit is available, declare an Authenticator component. Then save and close AccessServicesWithOAuthForm.qml.
AccessServicesWithOAuthForm.qml28 collapsed lines// Copyright 2025 ESRI//// All rights reserved under the copyright laws of the United States// and applicable international laws, treaties, and conventions.//// You may freely redistribute and use this sample code, with or// without modification, provided you include the original copyright// notice and use restrictions.//// See the Sample code usage restrictions document for further information.//import QtQuickimport QtQuick.Controlsimport Esri.AccessServicesWithOAuthimport Esri.ArcGISRuntime.ToolkitItem {// Create MapQuickView here, and create its Map etc. in C++ codeMapView {id: viewanchors.fill: parent// set focus to enable keyboard navigationfocus: true}// Declare the C++ instance which creates the map etc. and supply the viewAccessServicesWithOAuth {id: modelmapView: view}// Declare an Authenticator to support login.Authenticator {anchors.centerIn: parent}2 collapsed lines}NOTE: The Authenticator is a Toolkit component that simplifies the authentication workflow to automatically display the correct login user interface for each security method (Token, OAuth, PKI, and so on).
Define a function in the header file
The app will use the map viewArcGISTopographic BasemapStyle.
-
In the Projects window, open the Headers folder. Double-click the file AccessServicesWithOAuth.h to open it.
-
Add the declaration
void setupViewpoint();underprivate:. Then save the file.AccessServicesWithOAuth.h37 collapsed lines// Copyright 2025 ESRI//// All rights reserved under the copyright laws of the United States// and applicable international laws, treaties, and conventions.//// You may freely redistribute and use this sample code, with or// without modification, provided you include the original copyright// notice and use restrictions.//// See the Sample code usage restrictions document for further information.//#ifndef ACCESSSERVICESWITHOAUTH_H#define ACCESSSERVICESWITHOAUTH_Hnamespace Esri::ArcGISRuntime {class Map;class MapQuickView;} // namespace Esri::ArcGISRuntime#include <QObject>Q_MOC_INCLUDE("MapQuickView.h")class AccessServicesWithOAuth : public QObject{Q_OBJECTQ_PROPERTY(Esri::ArcGISRuntime::MapQuickView* mapView READ mapView WRITE setMapView NOTIFY mapViewChanged)public:explicit AccessServicesWithOAuth(QObject* parent = nullptr);~AccessServicesWithOAuth() override;signals:void mapViewChanged();private:Esri::ArcGISRuntime::MapQuickView* mapView() const;void setMapView(Esri::ArcGISRuntime::MapQuickView* mapView);void setupViewpoint();Esri::ArcGISRuntime::Map* m_map = nullptr;Esri::ArcGISRuntime::MapQuickView* m_mapView = nullptr;4 collapsed lines};#endif // ACCESSSERVICESWITHOAUTH_H -
After you have added the declaration, right click on the
setupViewPoint()and from the popup context menus choose Refactor > Add definition in AccessServicesWithOauth.cpp. This will open the AccessServicesWithOAuth.cpp file stub out thesetupViewPointmethod.
Add required class header files and namespaces
Several additional classes and a namespace are required to support the functionality your app needs. Specifically, for managing OAuth authentication, creating an image layer, and accessing the secured traffic layer portal item.
-
In Qt Creator, find the project Sources folder and open the AccessServicesWithOAuth.cpp file. Add
#includestatements for the required header files as shown.AccessServicesWithOAuth.cpp#include "AccessServicesWithOAuth.h"#include "Map.h"#include "MapTypes.h"#include "MapQuickView.h"#include "ArcGISMapImageLayer.h"#include "LayerListModel.h"#include "Point.h"#include "Portal.h"#include "PortalItem.h"#include "SpatialReference.h"#include "Viewpoint.h"#include <QFuture>#include "OAuthUserConfigurationManager.h"#include "Authentication/OAuthUserConfiguration.h" -
Add another
namespacestatement as shown.AccessServicesWithOAuth.cppusing namespace Esri::ArcGISRuntime;using namespace Esri::ArcGISRuntime::Authentication;
Create the view point
-
Add code to implement the
setupViewpointmethod. This method creates acenterPointbased on aSpatialReferencealong with longitude and latitude. It also creates aViewpointbased oncenterand sets scale. Lastly, it asynchronously sets the initialMapviewpoint.The center
Pointand scale value keep the initialViewpointcentered and focused on the Santa Monica Mountains. The scale value sets the level of detail to focus on the area of interest.The spatial reference
A spatial reference is a set of parameters, typically defined by a WKID, that define the coordinate system and spatial properties for geographic data. Applications use a spatial reference to correctly display the position of geographic data in a map or scene. created above is set to use World Geodetic System 1984 (WGS84), the spatial reference commonly used for GPS, and it has the well known id4326. To learn more, seeSpatial Referencesin the ArcGIS Maps SDK for Qt Guide.AccessServicesWithOAuth.cppMapQuickView* AccessServicesWithOAuth::mapView() const{return m_mapView;}void AccessServicesWithOAuth::setupViewpoint(){const Point center(-118.80543, 34.02700, SpatialReference::wgs84());const Viewpoint viewpoint(center, 100000.0);m_mapView->setViewpointAsync(viewpoint);}The
setMapViewmethod appearing later in this file gets a handle to theMapViewobject that was declared in QML code and sets theMapon theMapViewfor display. This code is installed by the templates that ArcGIS provides when creating a new project in Qt. You should not modify it. -
Add the following line of code to call the
setupViewpointmethod.AccessServicesWithOAuth.cpp// Set the view (created in QML)void AccessServicesWithOAuth::setMapView(MapQuickView* mapView){if (!mapView || mapView == m_mapView){return;}m_mapView = mapView;m_mapView->setMap(m_map);setupViewpoint();emit mapViewChanged();}
Create an OAuth user configuration and portal to access secured services
Using the Redirect URL and Client ID information obtained from the earlier prerequisites section Create OAuth credentials for user authentication in the tutorial when creating your OAuth credentials, you will create a new OAuthUserConfiguration object. This object is used as the input for the Qt Toolkit OAuthUserConfigurationManager to make use of the Qt WebEngine based login dialog. You will then use an instance of the Portal class to access secure services
-
In the
setupViewpointfunction, add the following code to create aOAuthUserConfigurationobject. Replace the “REDIRECT_URL” and “CLIENT_ID” placeholders strings (created earlier in this tutorial in the section Create OAuth credentials for user authentication).AccessServicesWithOAuth.cppvoid AccessServicesWithOAuth::setupViewpoint(){const Point center(-118.80543, 34.02700, SpatialReference::wgs84());const Viewpoint viewpoint(center, 100000.0);m_mapView->setViewpointAsync(viewpoint);// Define the Redirect URL string obtained when creating the OAuth credentials.// TODO: You need to replace the "REDIRECT_URL" with your own valid string,// ex: "urn:ietf:wg:oauth:2.0:oob"const auto qStringRedirectUrl = QString{"REDIRECT_URL"};// Define the URL of the portal to authenticate with.const QUrl qUrlPortal = QUrl{"https://www.arcgis.com/"};// Define a unique identifier associated with an application registered with the// portal that assists with client/server OAuth authentication.// TODO: You need to replace the "CLIENT_ID" with your own valid string.const QString qStringClientId = QString{"CLIENT_ID"};// Create a new OAuth user configuration using: the Url to ArcGIS online, the Client ID// string, and the Redirect Url string.auto* oAuthUserConfiguration = new OAuthUserConfiguration(qUrlPortal, qStringClientId,qStringRedirectUrl, this);// Call the Toolkit's OAuthUserConfigurationManager static `addConfiguration`// method to use the OAuth dialog. This will require the input of a valid username/password.Toolkit::OAuthUserConfigurationManager::addConfiguration(oAuthUserConfiguration); -
Now add code to create a
Portalthat will use the booleantruewhich forces the login to occur to gain access to the secured ArcGIS World Traffic service.AccessServicesWithOAuth.cpp// Call the Toolkit's OAuthUserConfigurationManager static `addConfiguration`// method to use the OAuth dialog. This will require the input of a valid username/password.Toolkit::OAuthUserConfigurationManager::addConfiguration(oAuthUserConfiguration);// Create a new portal using the boolean `true` which forces the login to occur.constexpr auto loginRequired = true;Portal* portal = new Portal(loginRequired, this);
Add the secured traffic layer
The ArcGIS World Traffic service is a dynamic map service that presents historical and near real-time traffic information for different regions of the world. This service requires an ArcGIS Online organizational subscription. You will add a portal item referencing this service, and create a traffic layer from that.
ArcGIS World Traffic service data is updated every five minutes to provide traffic speed and traffic incident visualization and identification. Traffic speeds are displayed as a percentage of free-flow speeds, which is frequently the speed limit or how fast cars tend to travel when unencumbered by other vehicles. The streets are color coded as follows:
- Green (fast): 85 - 100% of free flow speeds
- Yellow (moderate): 65 - 85%
- Orange (slow); 45 - 65%
- Red (stop and go): 0 - 45%
-
Add code to create a
PortalItemusing the traffic service’s item IDAn item ID is a unique identifier representing a single item stored, managed, and accessed in a portal, such as a web map, hosted layer, or file. . Then create anArcGISMapImageLayerto display the traffic service. Finally, append the traffic layer to the map’s collection of data layers (operational layers).AccessServicesWithOAuth.cpp77 collapsed lines// Copyright 2025 ESRI//// All rights reserved under the copyright laws of the United States// and applicable international laws, treaties, and conventions.//// You may freely redistribute and use this sample code, with or// without modification, provided you include the original copyright// notice and use restrictions.//// See the Sample code usage restrictions document for further information.//#include "AccessServicesWithOAuth.h"#include "Map.h"#include "MapTypes.h"#include "MapQuickView.h"#include "ArcGISMapImageLayer.h"#include "LayerListModel.h"#include "Point.h"#include "Portal.h"#include "PortalItem.h"#include "SpatialReference.h"#include "Viewpoint.h"#include <QFuture>#include "OAuthUserConfigurationManager.h"#include "Authentication/OAuthUserConfiguration.h"using namespace Esri::ArcGISRuntime;using namespace Esri::ArcGISRuntime::Authentication;AccessServicesWithOAuth::AccessServicesWithOAuth(QObject* parent /* = nullptr */):QObject(parent),m_map(new Map(BasemapStyle::ArcGISTopographic, this)){}AccessServicesWithOAuth::~AccessServicesWithOAuth() = default;MapQuickView* AccessServicesWithOAuth::mapView() const{return m_mapView;}void AccessServicesWithOAuth::setupViewpoint(){const Point center(-118.80543, 34.02700, SpatialReference::wgs84());const Viewpoint viewpoint(center, 100000.0);m_mapView->setViewpointAsync(viewpoint);// Define the Redirect URL string obtained when creating the OAuth credentials.// TODO: You need to replace the "REDIRECT_URL" with your own valid string,// ex: "urn:ietf:wg:oauth:2.0:oob"const auto qStringRedirectUrl = QString{"REDIRECT_URL"};// Define the URL of the portal to authenticate with.const QUrl qUrlPortal = QUrl{"https://www.arcgis.com/"};// Define a unique identifier associated with an application registered with the// portal that assists with client/server OAuth authentication.// TODO: You need to replace the "CLIENT_ID" with your own valid string.const QString qStringClientId = QString{"CLIENT_ID"};// Create a new OAuth user configuration using: the Url to ArcGIS online, the Client ID// string, and the Redirect Url string.auto* oAuthUserConfiguration = new OAuthUserConfiguration(qUrlPortal, qStringClientId,qStringRedirectUrl, this);// Call the Toolkit's OAuthUserConfigurationManager static `addConfiguration`// method to use the OAuth dialog. This will require the input of a valid username/password.Toolkit::OAuthUserConfigurationManager::addConfiguration(oAuthUserConfiguration);// Create a new portal using the boolean `true` which forces the login to occur.constexpr auto loginRequired = true;Portal* portal = new Portal(loginRequired, this);// Create a new portal item using the inputs of: a portal and the String ID for the// ArcGIS World Traffic service. This causes the OAuth challenge to occur.PortalItem* portalItem = new PortalItem(portal, "ff11eb5b930b4fabba15c47feb130de4", this);// Create a new ArcGIS map image layer using the input of the portal item.ArcGISMapImageLayer* arcGISMapImageLayer = new ArcGISMapImageLayer(portalItem, this);// Append the traffic layer to the map's data layer collection.m_map->operationalLayers()->append(arcGISMapImageLayer);18 collapsed lines}// Set the view (created in QML)void AccessServicesWithOAuth::setMapView(MapQuickView* mapView){if (!mapView || mapView == m_mapView){return;}m_mapView = mapView;m_mapView->setMap(m_map);setupViewpoint();emit mapViewChanged();} -
Press Ctrl + R to run the app.
The app will open and you should see the Sign In prompt you for to enter your ArcGIS Online Username and Password for the Authenticator Qt Toolkit control. When entered, click the Sign In button.

After authenticating successfully with ArcGIS Online, a map with the topographic basemap layer centered on the Santa Monica Mountains in California. The map will appear with the traffic layer also displayed.

Alternatively, you can download the tutorial solution, as follows.
Option 2: Download the solution
-
Click the Download solution link in the right-hand panel of the page.
-
Unzip the file to a location on your machine.
-
Using Windows Explorer, double click on the
AccessServicesWithOAuth.profile to launch Qt Creator.
Set path to the Qt Toolkit in the project
-
Ensure you have completed the prerequisites listed at the beginning of this tutorial. In particular, ensure you have done the step Download the ArcGIS Maps SDK for Qt Toolkit and have noted the path to the
toolkitcpp.prifile that is in the directory structure of the Qt Toolkit on your development machine. -
In the project Sources folder of Qt Creator, open the AccessServicesWithOAuth.pro file and locate the following line and update the
includestatement to the path of thetoolkitcpp.prifile.AccessServicesWithOAuth.proARCGIS_RUNTIME_VERSION = 300.0.0include($$PWD/arcgisruntime.pri)# TODO: You need to replace the <path_to_toolkit_repo> with a valid location where the Qt Toolkit# resides on your system, example: C:/arcgis-maps-sdk-toolkit-qt/uitools/toolkitcpp/toolkitcpp.priinclude(<path_to_toolkit_repo>/uitools/toolkitcpp/toolkitcpp.pri)qtHaveModule(webenginequick) {QT += webenginequick}
Set developer credentials in the solution
To allow your app users to access ArcGIS location services
-
In the project Sources folder of Qt Creator, open the AccessServicesWithOAuth.cpp file.
-
Set your values for the REDIRECT_URL (
qStringRedirectUrl) and the CLIENT_ID (qStringClientId).AccessServicesWithOAuth.cpp// Define the Redirect URL string obtained when creating the OAuth credentials.// TODO: You need to replace the "REDIRECT_URL" with your own valid string,// ex: "urn:ietf:wg:oauth:2.0:oob"const auto qStringRedirectUrl = QString{"REDIRECT_URL"};// Define the URL of the portal to authenticate with.const QUrl qUrlPortal = QUrl{"https://www.arcgis.com/"};// Define a unique identifier associated with an application registered with the// portal that assists with client/server OAuth authentication.// TODO: You need to replace the "CLIENT_ID" with your own valid string.const QString qStringClientId = QString{"CLIENT_ID"};
Best Practice: The OAuth credentials are stored directly in the code as a convenience for this tutorial. Do not store credentials directly in source code in a production environment.
-
Press Ctrl + R to run the app.
The app will open and you should see the Sign In prompt you for to enter your ArcGIS Online Username and Password for the Authenticator Qt Toolkit control. When entered, click the Sign In button.

After authenticating successfully with ArcGIS Online, a map with the topographic basemap layer centered on the Santa Monica Mountains in California. The map will appear with the traffic layer also displayed.
