Coder Social home page Coder Social logo

Comments (2)

gr2m avatar gr2m commented on May 26, 2024

What I would suggest you do is to use https://github.com/octokit/core.js where you can pass { request: { agent } } to setup a proxy. The full code would look like this

const { Octokit } = require('@octokit/core')
const { createAppAuth } = require("@octokit/auth-app");
const httpsAgent = new https.Agent({ keepAlive: true });

const MyEnterpriseOctokit = Octokit.defaults({
  authStrategy: createAppAuth,
  baseUrl: YOUR_ENTERPRISE_BASE_URL,
  request: { agent: httpsAgent }
})

const octokit = new Octokit({
  auth: {
    id: 1,
    privateKey: "-----BEGIN PRIVATE KEY-----\n...",
    installationId: 123,
    clientId: "1234567890abcdef1234",
    clientSecret: "1234567890abcdef12341234567890abcdef1234"
  }
})

octokit.graphql(query, variables)

If you don't want to use @octokit/core, you can create a custom @octokit/request instance and pass that to both, @octokit/graphql (see docs and @octokit/auth-app (via request option)

Does either work for you?

from auth-app.js.

gr2m avatar gr2m commented on May 26, 2024

let me know if you have further questions

from auth-app.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.