oauth-integrations

Implement OAuth 2.0 authentication with GitHub and Microsoft Entra ID in edge environments.

Updated Jan 29, 2026
One-click install
npx skills add https://github.com/brendadeeznuts1111/tier-1380-omega --skill oauth-integrations-brendadeeznuts1111
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: oauth-integrations
Source: https://github.com/brendadeeznuts1111/tier-1380-omega/tree/main/skills/oauth-integrations
Command: npx skills add https://github.com/brendadeeznuts1111/tier-1380-omega --skill oauth-integrations-brendadeeznuts1111

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill simplifies the implementation of OAuth 2.0 authentication with GitHub and Microsoft Entra (Azure AD) in serverless and edge environments like Cloudflare Workers, where traditional SDKs may not be available.

Core Features & Use Cases

  • GitHub OAuth: Handles required headers, private email retrieval, and token exchange quirks.
  • Microsoft Entra (Azure AD): Provides patterns for manual OAuth flows and token validation without MSAL.
  • Edge Runtime Compatibility: Designed for environments lacking browser or Node.js APIs.
  • Use Case: Securely authenticate users logging in via GitHub or Microsoft accounts directly within your Cloudflare Worker application.

Quick Start

Implement GitHub OAuth by adding the User-Agent header to your API requests.

Frequently Asked Questions about oauth-integrations

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I implement OAuth 2.0 authentication in Cloudflare Workers?

You can implement OAuth 2.0 authentication in Cloudflare Workers by using manual flow patterns designed for edge runtimes that lack traditional browser or Node.js APIs. This approach handles secure user sign-ins and token management directly within serverless environments.

Why does GitHub OAuth fail in edge environments without a User-Agent header?

GitHub OAuth requires a User-Agent header for API requests in edge environments. Without it, requests fail due to provider-specific requirements. This Skill handles these headers, private email retrieval, and token exchange quirks automatically.

Can I use Microsoft Entra ID authentication in serverless without MSAL?

Yes, you can authenticate with Microsoft Entra ID in serverless environments without MSAL. This Skill provides patterns for manual OAuth flows and token validation, bypassing runtime limitations that prevent traditional SDK usage.

What is the best way to handle private email retrieval during GitHub OAuth token exchange?

The best way to handle private email retrieval during GitHub OAuth is to implement manual token exchange patterns tailored for edge compatibility. This addresses provider-specific quirks securely within serverless applications.

Are traditional authentication SDKs supported in edge computing environments?

Traditional authentication SDKs are generally not supported in edge computing environments like Cloudflare Workers due to missing browser or Node.js APIs. This Skill provides alternative manual OAuth 2.0 flows for GitHub and Microsoft Entra ID.

How do I validate Microsoft Entra ID tokens manually in a serverless application?

You validate Microsoft Entra ID tokens manually by implementing specific OAuth flow patterns without relying on MSAL. This method overcomes edge runtime limitations to ensure secure user sign-ins directly in your serverless application.