mirror of
https://gitee.com/dcren/openiddict-documentation.git
synced 2025-04-05 17:38:03 +08:00
292 lines
22 KiB
HTML
292 lines
22 KiB
HTML
<!DOCTYPE html>
|
||
<!--[if IE]><![endif]-->
|
||
<html>
|
||
|
||
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
<title>OpenIddict </title>
|
||
<meta name="viewport" content="width=device-width">
|
||
<meta name="title" content="OpenIddict ">
|
||
<meta name="generator" content="docfx 2.56.7.0">
|
||
|
||
<link rel="shortcut icon" href="images/favicon.ico">
|
||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
|
||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.1/styles/night-owl.min.css">
|
||
<link rel="stylesheet" href="styles/colors.css">
|
||
<link rel="stylesheet" href="styles/discord.css">
|
||
<link rel="stylesheet" href="styles/main.css">
|
||
<meta property="docfx:navrel" content="toc.html">
|
||
<meta property="docfx:tocrel" content="toc.html">
|
||
|
||
|
||
|
||
</head>
|
||
|
||
<body>
|
||
<div class="top-navbar">
|
||
|
||
<a href="javascript:void(0);" class="burger-icon" onclick="toggleMenu()">
|
||
<svg name="Hamburger" style="vertical-align: middle;" width="24" height="24" viewbox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M20 6H4V9H20V6ZM4 10.999H20V13.999H4V10.999ZM4 15.999H20V18.999H4V15.999Z"></path></svg>
|
||
</a>
|
||
|
||
|
||
<a class="brand" href="index.html">
|
||
<img src="images/logo.png" alt="OpenIddict" class="logomark">
|
||
<span class="brand-title">OpenIddict</span>
|
||
</a>
|
||
</div>
|
||
|
||
<div class="body-content">
|
||
|
||
<div id="blackout" class="blackout" onclick="toggleMenu()"></div>
|
||
|
||
<nav id="sidebar" role="navigation">
|
||
|
||
<div class="sidebar">
|
||
|
||
|
||
|
||
|
||
<div>
|
||
|
||
<a class="brand" href="index.html">
|
||
<img src="images/logo.png" alt="OpenIddict" class="logomark">
|
||
<span class="brand-title">OpenIddict</span>
|
||
</a>
|
||
<div id="navbar">
|
||
|
||
</div>
|
||
|
||
</div>
|
||
|
||
|
||
<div class="sidebar-item-separator"></div>
|
||
|
||
|
||
</div>
|
||
|
||
<div class="footer">
|
||
|
||
<span>Generated by <strong>DocFX</strong></span>
|
||
</div>
|
||
</nav>
|
||
|
||
<main class="main-panel">
|
||
|
||
<div role="main" class="hide-when-search">
|
||
|
||
|
||
<div class="subnav navbar navbar-default">
|
||
<div class="container hide-when-search" id="breadcrumb">
|
||
<ul class="breadcrumb">
|
||
<li></li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<article class="content wrap" id="_content" data-uid="">
|
||
<h1 id="openiddict">OpenIddict</h1>
|
||
|
||
<h3 id="the-openid-connect-stack-youll-be-addicted-to">The OpenID Connect stack you'll be addicted to.</h3>
|
||
<p><a href="https://github.com/openiddict/openiddict-core/actions?query=workflow%3Abuild+branch%3Adev+event%3Apush"><img src="https://github.com/openiddict/openiddict-core/workflows/build/badge.svg?branch=dev&event=push" alt="Build status"></a></p>
|
||
<h2 id="whats-openiddict">What's OpenIddict?</h2>
|
||
<p>OpenIddict aims at providing a <strong>versatile solution</strong> to implement <strong>OpenID Connect client, server and token validation support in any ASP.NET Core 2.1 (and higher) application</strong>.
|
||
<strong>ASP.NET 4.6.1 (and higher) applications are also fully supported thanks to a native Microsoft.Owin 4.2 integration</strong>.</p>
|
||
<p>OpenIddict fully supports the <strong><a href="http://openid.net/specs/openid-connect-core-1_0.html">code/implicit/hybrid flows</a></strong>,
|
||
the <strong><a href="https://tools.ietf.org/html/rfc6749">client credentials/resource owner password grants</a></strong> and the <a href="https://tools.ietf.org/html/rfc8628">device authorization flow</a>.</p>
|
||
<p>OpenIddict natively supports <strong><a href="https://www.nuget.org/packages/OpenIddict.EntityFrameworkCore">Entity Framework Core</a></strong>,
|
||
<strong><a href="https://www.nuget.org/packages/OpenIddict.EntityFramework">Entity Framework 6</a></strong> and <strong><a href="https://www.nuget.org/packages/OpenIddict.MongoDb">MongoDB</a></strong>
|
||
out-of-the-box and custom stores can be implemented to support other providers.</p>
|
||
<hr>
|
||
<h2 id="getting-started">Getting started</h2>
|
||
<p><strong>Developers looking for a simple and turnkey solution are strongly encouraged to use <a href="https://docs.orchardcore.net/en/latest/docs/reference/modules/OpenId/">OrchardCore and its OpenID module</a></strong>,
|
||
which is based on OpenIddict, comes with sensible defaults and offers a built-in management GUI to easily register OpenID client applications.</p>
|
||
<p><strong>To implement a custom OpenID Connect server using OpenIddict, read <a href="https://documentation.openiddict.com/guides/getting-started.html">Getting started</a></strong>.</p>
|
||
<p><strong>Samples demonstrating how to use OpenIddict with the different OAuth 2.0/OpenID Connect flows</strong>
|
||
can be found in the <a href="https://github.com/openiddict/openiddict-samples">dedicated repository</a>.</p>
|
||
<hr>
|
||
<h2 id="compatibility-matrix">Compatibility matrix</h2>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>Web framework version</th>
|
||
<th>.NET runtime version</th>
|
||
<th>OpenIddict 4.x</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>ASP.NET Core 2.1</td>
|
||
<td>.NET Framework 4.6.1</td>
|
||
<td><span class="emoji" shortcode="heavy_check_mark">✔️</span> <span class="emoji" shortcode="information_source">ℹ️</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>ASP.NET Core 2.1</td>
|
||
<td>.NET Framework 4.7.2</td>
|
||
<td><span class="emoji" shortcode="heavy_check_mark">✔️</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>ASP.NET Core 2.1</td>
|
||
<td>.NET Framework 4.8</td>
|
||
<td><span class="emoji" shortcode="heavy_check_mark">✔️</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>ASP.NET Core 2.1</td>
|
||
<td>.NET Core 2.1</td>
|
||
<td><span class="emoji" shortcode="exclamation">❗</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td></td>
|
||
<td></td>
|
||
<td></td>
|
||
</tr>
|
||
<tr>
|
||
<td>ASP.NET Core 3.1</td>
|
||
<td>.NET Core 3.1</td>
|
||
<td><span class="emoji" shortcode="heavy_check_mark">✔️</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td></td>
|
||
<td></td>
|
||
<td></td>
|
||
</tr>
|
||
<tr>
|
||
<td>ASP.NET Core 5.0</td>
|
||
<td>.NET 5.0</td>
|
||
<td><span class="emoji" shortcode="exclamation">❗</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>ASP.NET Core 6.0</td>
|
||
<td>.NET 6.0</td>
|
||
<td><span class="emoji" shortcode="heavy_check_mark">✔️</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>ASP.NET Core 7.0</td>
|
||
<td>.NET 7.0</td>
|
||
<td><span class="emoji" shortcode="heavy_check_mark">✔️</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td></td>
|
||
<td></td>
|
||
<td></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Microsoft.Owin 4.2</td>
|
||
<td>.NET Framework 4.6.1</td>
|
||
<td><span class="emoji" shortcode="heavy_check_mark">✔️</span> <span class="emoji" shortcode="information_source">ℹ️</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Microsoft.Owin 4.2</td>
|
||
<td>.NET Framework 4.7.2</td>
|
||
<td><span class="emoji" shortcode="heavy_check_mark">✔️</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>Microsoft.Owin 4.2</td>
|
||
<td>.NET Framework 4.8</td>
|
||
<td><span class="emoji" shortcode="heavy_check_mark">✔️</span></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
<p><span class="emoji" shortcode="exclamation">❗</span> <strong>Note: ASP.NET Core 2.1 on .NET Core 2.1 and ASP.NET Core 5.0 on .NET 5.0 are no longer supported by Microsoft. While OpenIddict 4.x can still be
|
||
used on .NET Core 2.1 thanks to its .NET Standard 2.0 compatibility, users are strongly encouraged to migrate to ASP.NET Core/.NET 6.0</strong>.
|
||
ASP.NET Core 2.1 on .NET Framework 4.6.1 (and higher) is still fully supported.</p>
|
||
<p><span class="emoji" shortcode="information_source">ℹ️</span> <strong>Note: the following features are not available when targeting .NET Framework 4.6.1</strong>:</p>
|
||
<ul>
|
||
<li>X.509 development encryption/signing certificates: calling <code>AddDevelopmentEncryptionCertificate()</code> or <code>AddDevelopmentSigningCertificate()</code>
|
||
will result in a <code>PlatformNotSupportedException</code> being thrown at runtime if no valid development certificate can be found and a new one must be generated.</li>
|
||
<li>X.509 ECDSA signing certificates/keys: calling <code>AddSigningCertificate()</code> or <code>AddSigningKey()</code>
|
||
with an ECDSA certificate/key will always result in a <code>PlatformNotSupportedException</code> being thrown at runtime.</li>
|
||
</ul>
|
||
<hr>
|
||
<h2 id="certification">Certification</h2>
|
||
<p>Unlike many other identity providers, <strong>OpenIddict is not a turnkey solution but a framework that requires writing custom code</strong>
|
||
to be operational (typically, at least an authorization controller), making it a poor candidate for the certification program.</p>
|
||
<p>While a reference implementation could be submitted as-is, <strong>this wouldn't guarantee that implementations deployed by OpenIddict users would be standard-compliant.</strong></p>
|
||
<p>Instead, <strong>developers are encouraged to execute the conformance tests against their own deployment</strong> once they've implemented their own logic.</p>
|
||
<blockquote><p>The samples repository contains <a href="https://github.com/openiddict/openiddict-samples/tree/dev/samples/Contruum/Contruum.Server">a dedicated sample</a> specially designed to be used
|
||
with the OpenID Connect Provider Certification tool and demonstrate that OpenIddict can be easily used in a certified implementation. To allow executing the certification tests
|
||
as fast as possible, that sample doesn't include any membership or consent feature (two hardcoded identities are proposed for tests that require switching between identities).</p>
|
||
</blockquote>
|
||
<hr>
|
||
<h2 id="resources">Resources</h2>
|
||
<p><strong>Looking for additional resources to help you get started with OpenIddict?</strong> Don't miss these interesting blog posts:</p>
|
||
<ul>
|
||
<li><strong><a href="https://kevinchalet.com/2022/06/22/openiddict-4-0-preview1-is-out/">OpenIddict 4.0 preview1 is out</a></strong> by <a href="https://github.com/kevinchalet">Kévin Chalet</a></li>
|
||
<li><strong><a href="https://github.com/aspnet-contrib/AspNet.Security.OAuth.Providers/issues/694">Introducing the OpenIddict-powered providers</a></strong> by <a href="https://github.com/kevinchalet">Kévin Chalet</a></li>
|
||
<li><strong><a href="https://kevinchalet.com/2022/02/25/introducing-the-openiddict-client/">Introducing the OpenIddict client</a></strong> by <a href="https://github.com/kevinchalet">Kévin Chalet</a></li>
|
||
<li><strong><a href="https://damienbod.com/2022/01/03/secure-a-blazor-wasm-asp-net-core-hosted-app-using-bff-and-openiddict/">Secure a Blazor WASM ASP.NET Core hosted APP using BFF and OpenIddict</a></strong> by <a href="https://github.com/damienbod">Damien Bowden</a></li>
|
||
<li><strong><a href="https://virtocommerce.com/blog/how-to-secure-aspnet-core-applications-with-openiddict-using-virto-commerce-platform">How to Secure ASP.NET Core Applications with OpenIddict Using Virto Commerce B2B eCommerce: Tech Case Study</a></strong> by <a href="https://virtocommerce.com/">Virto Commerce</a></li>
|
||
<li><strong><a href="https://kevinchalet.com/2020/12/23/openiddict-3-0-general-availability/">OpenIddict 3.0 general availability</a></strong> by <a href="https://github.com/kevinchalet">Kévin Chalet</a></li>
|
||
<li><strong><a href="https://dev.to/robinvanderknaap/setting-up-an-authorization-server-with-openiddict-part-i-introduction-4jid">Setting up an Authorization Server with OpenIddict</a></strong> by <a href="https://dev.to/robinvanderknaap">Robin van der Knaap</a></li>
|
||
<li><strong><a href="https://kevinchalet.com/2020/11/17/introducing-openiddict-3-0-s-first-release-candidate-version/">Introducing OpenIddict 3.0's first release candidate version</a></strong> by <a href="https://github.com/kevinchalet">Kévin Chalet</a></li>
|
||
<li><strong><a href="https://kevinchalet.com/2020/10/27/openiddict-3-0-beta6-is-out/">OpenIddict 3.0 beta6 is out</a></strong> by <a href="https://github.com/kevinchalet">Kévin Chalet</a></li>
|
||
<li><strong><a href="https://kevinchalet.com/2020/10/02/introducing-quartz-net-support-and-new-languages-in-openiddict-3-0-beta4/">Introducing Quartz.NET support and new languages in OpenIddict 3.0 beta4</a></strong> by <a href="https://github.com/kevinchalet">Kévin Chalet</a></li>
|
||
<li><strong><a href="https://kevinchalet.com/2020/08/03/introducing-localization-support-in-openiddict-3-0-beta3/">Introducing localization support in OpenIddict 3.0 beta3</a></strong> by <a href="https://github.com/kevinchalet">Kévin Chalet</a></li>
|
||
<li><strong><a href="https://kevinchalet.com/2020/07/08/openiddict-3-0-beta2-is-out/">OpenIddict 3.0 beta2 is out</a></strong> by <a href="https://github.com/kevinchalet">Kévin Chalet</a></li>
|
||
<li><strong><a href="https://kevinchalet.com/2020/06/11/introducing-openiddict-3-0-beta1/">Introducing OpenIddict 3.0 beta1</a></strong> by <a href="https://github.com/kevinchalet">Kévin Chalet</a></li>
|
||
<li><strong><a href="https://kevinchalet.com/2020/03/03/adding-openiddict-3-0-to-an-owin-application/">Adding OpenIddict 3.0 to an OWIN application</a></strong> by <a href="https://github.com/kevinchalet">Kévin Chalet</a></li>
|
||
<li><strong><a href="https://kevinchalet.com/2020/02/18/creating-an-openid-connect-server-proxy-with-openiddict-3-0-s-degraded-mode/">Creating an OpenID Connect server proxy with OpenIddict 3.0's degraded mode</a></strong> by <a href="https://github.com/kevinchalet">Kévin Chalet</a></li>
|
||
</ul>
|
||
<p><strong>OpenIddict-based projects maintained by third parties</strong>:</p>
|
||
<ul>
|
||
<li><strong><a href="https://github.com/OrchardCMS/OrchardCore">OrchardCore OpenID module</a></strong>: turnkey OpenID Connect server and token validation solution, built with multitenancy in mind</li>
|
||
<li><strong><a href="https://github.com/thomasduft/openiddict-ui">OpenIddict UI</a></strong> by <a href="https://github.com/thomasduft">Thomas Duft</a>: headless UI for managing client applications and scopes</li>
|
||
<li><strong><a href="https://github.com/panoukos41/couchdb-openiddict">P41.OpenIddict.CouchDB</a></strong> by <a href="https://github.com/panoukos41">Panos Athanasiou</a>: CouchDB stores for OpenIddict</li>
|
||
<li><strong><a href="https://github.com/Nfactor26/pixel-identity">pixel-identity</a></strong> by <a href="https://github.com/Nfactor26">Nishant Singh</a>: Ready to host OpenID Connect service using OpenIddict and ASP.NET Identity with a Blazor-based UI for managing users, roles, applications and scopes with support for multiple databases.</li>
|
||
</ul>
|
||
<hr>
|
||
<h2 id="security-policy">Security policy</h2>
|
||
<p>Security issues and bugs should be reported privately by emailing security@openiddict.com.
|
||
You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message.</p>
|
||
<hr>
|
||
<h2 id="support">Support</h2>
|
||
<p>If you need support, please make sure you <a href="https://github.com/sponsors/kevinchalet">sponsor the project</a> before creating a GitHub ticket.
|
||
If you're not a sponsor, you can post your questions on Gitter or StackOverflow:</p>
|
||
<ul>
|
||
<li><strong>Gitter: <a href="https://gitter.im/openiddict/openiddict-core">https://gitter.im/openiddict/openiddict-core</a></strong></li>
|
||
<li><strong>StackOverflow: <a href="https://stackoverflow.com/questions/tagged/openiddict">https://stackoverflow.com/questions/tagged/openiddict</a></strong></li>
|
||
</ul>
|
||
<hr>
|
||
<h2 id="nightly-builds">Nightly builds</h2>
|
||
<p>If you want to try out the latest features and bug fixes, there is a MyGet feed with nightly builds of OpenIddict.
|
||
To reference the OpenIddict MyGet feed, <strong>create a <code>NuGet.config</code> file</strong> (at the root of your solution):</p>
|
||
<pre><code class="lang-xml"><?xml version="1.0" encoding="utf-8"?>
|
||
<configuration>
|
||
<packageSources>
|
||
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
|
||
<add key="openiddict" value="https://www.myget.org/F/openiddict/api/v3/index.json" />
|
||
</packageSources>
|
||
</configuration>
|
||
</code></pre><hr>
|
||
<h2 id="contributors">Contributors</h2>
|
||
<p><strong>OpenIddict</strong> is actively maintained by <strong><a href="https://github.com/kevinchalet">Kévin Chalet</a></strong>. Contributions are welcome and can be submitted using pull requests.</p>
|
||
<p><strong>Special thanks to <a href="https://github.com/sponsors/kevinchalet#sponsors">our sponsors</a> for their incredible support</strong>:</p>
|
||
<p><a href="https://volosoft.com/"><img src="https://volosoft.com/assets/logos/volosoft-logo-dark.svg" width="500px" alt="Volosoft logo"></a></p>
|
||
<p><!-- sponsors --><a href="https://github.com/sebastienros"><img src="https://github.com/sebastienros.png" width="60px" alt="Sébastien Ros"></a><a href="https://github.com/schmitch"><img src="https://github.com/schmitch.png" width="60px" alt="Schmitt Christian"></a><a href="https://github.com/cryo75"><img src="https://github.com/cryo75.png" width="60px" alt=""></a><a href="https://github.com/florianwachs"><img src="https://github.com/florianwachs.png" width="60px" alt="Florian Wachs"></a><a href="https://github.com/SebastianStehle"><img src="https://github.com/SebastianStehle.png" width="60px" alt="Sebastian Stehle"></a><a href="https://github.com/communicatie-cockpit"><img src="https://github.com/communicatie-cockpit.png" width="60px" alt="Communicatie Cockpit"></a><a href="https://github.com/KeithT"><img src="https://github.com/KeithT.png" width="60px" alt=""></a><a href="https://github.com/Skrypt"><img src="https://github.com/Skrypt.png" width="60px" alt="Jasmin Savard"></a><a href="https://github.com/ThomasBjallas"><img src="https://github.com/ThomasBjallas.png" width="60px" alt="Thomas"></a><a href="https://github.com/mcalasa"><img src="https://github.com/mcalasa.png" width="60px" alt="MCee"></a><a href="https://github.com/feededit"><img src="https://github.com/feededit.png" width="60px" alt=""></a><a href="https://github.com/DigitalOpsDev"><img src="https://github.com/DigitalOpsDev.png" width="60px" alt="DigitalOps Co. Ltd."></a><a href="https://github.com/jacojvv-dev"><img src="https://github.com/jacojvv-dev.png" width="60px" alt="Jaco Jansen van Vuuren"></a><a href="https://github.com/EYERIDE-Fleet-Management-System"><img src="https://github.com/EYERIDE-Fleet-Management-System.png" width="60px" alt="EYERIDE Fleet Management System"></a><a href="https://github.com/salimz1"><img src="https://github.com/salimz1.png" width="60px" alt=""></a><a href="https://github.com/hypdeb"><img src="https://github.com/hypdeb.png" width="60px" alt="Julien Debache"></a><a href="https://github.com/StanlyLife"><img src="https://github.com/StanlyLife.png" width="60px" alt="Stian Håve"></a><a href="https://github.com/ravindUwU"><img src="https://github.com/ravindUwU.png" width="60px" alt="Ravindu Liyanapathirana"></a><a href="https://github.com/dlandi"><img src="https://github.com/dlandi.png" width="60px" alt="HieronymusBlaze"></a><a href="https://github.com/ahanoff"><img src="https://github.com/ahanoff.png" width="60px" alt="Akhan Zhakiyanov"></a><a href="https://github.com/CorentinBrossutti1"><img src="https://github.com/CorentinBrossutti1.png" width="60px" alt="Corentin BROSSUTTI"></a><a href="https://github.com/blowdart"><img src="https://github.com/blowdart.png" width="60px" alt="Barry Dorrans"></a><a href="https://github.com/devqsrl"><img src="https://github.com/devqsrl.png" width="60px" alt="DevQ S.r.l."></a><a href="https://github.com/dgxhubbard"><img src="https://github.com/dgxhubbard.png" width="60px" alt=""></a><a href="https://github.com/verdie-g"><img src="https://github.com/verdie-g.png" width="60px" alt="Grégoire"></a><a href="https://github.com/xperiandri"><img src="https://github.com/xperiandri.png" width="60px" alt="Andrii Chebukin"></a><a href="https://github.com/neil-timmerman"><img src="https://github.com/neil-timmerman.png" width="60px" alt=""></a><a href="https://github.com/forterro"><img src="https://github.com/forterro.png" width="60px" alt="Forterro"></a><a href="https://github.com/MarcelMalik"><img src="https://github.com/MarcelMalik.png" width="60px" alt="Marcel"></a><a href="https://github.com/expeo"><img src="https://github.com/expeo.png" width="60px" alt=""></a><a href="https://github.com/jwillmer"><img src="https://github.com/jwillmer.png" width="60px" alt="Jens Willmer"></a><a href="https://github.com/craaash80"><img src="https://github.com/craaash80.png" width="60px" alt=""></a><!-- sponsors --></p>
|
||
<hr>
|
||
<h2 id="license">License</h2>
|
||
<p>This project is licensed under the <strong>Apache License</strong>. This means that you can use, modify and distribute it freely.
|
||
See <a href="http://www.apache.org/licenses/LICENSE-2.0.html">http://www.apache.org/licenses/LICENSE-2.0.html</a> for more details.</p>
|
||
</article>
|
||
|
||
</div>
|
||
</main>
|
||
</div>
|
||
|
||
|
||
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
|
||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
|
||
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.1/highlight.min.js"></script>
|
||
<script type="text/javascript" src="styles/jquery.twbsPagination.js"></script>
|
||
<script type="text/javascript" src="styles/url.min.js"></script>
|
||
<script src="https://cdn.jsdelivr.net/npm/anchor-js/anchor.min.js"></script>
|
||
<script type="text/javascript" src="styles/docfx.js"></script>
|
||
<script type="text/javascript" src="styles/main.js"></script>
|
||
|
||
</body>
|
||
|
||
</html>
|