Giter Club home page Giter Club logo

Comments (4)

KnorpelSenf avatar KnorpelSenf commented on September 3, 2024 1

You may also find https://github.com/grammyjs/grammY/blob/main/CONTRIBUTING.md#coding useful

from grammy.

KnorpelSenf avatar KnorpelSenf commented on September 3, 2024

That sounds reasonable. Could you open a pull request to fix it? :)

from grammy.

gabelluardo avatar gabelluardo commented on September 3, 2024

Yeah, sure, can you give me a hint of what these functions do, so I know how to modify it?

const oak: FrameworkAdapter = (ctx) => ({
update: ctx.request.body({ type: "json" }).value,
header: ctx.request.headers.get(SECRET_HEADER) || undefined,
end: () => {
ctx.response.status = 200;
},
respond: (json) => {
ctx.response.type = "json";
ctx.response.body = json;
},
unauthorized: () => {
ctx.response.status = 401;
},
});

from grammy.

KnorpelSenf avatar KnorpelSenf commented on September 3, 2024

Absolutely. Those functions make up the interface between grammY and each web framework. They define how to obtain the update object from the Bot API's webhook request, and provide several ways to respond to the webhook request.

Here is the definition of the interface with documentation for every field. Also, you will find numerous examples in the same file, illustrating how to use them.

from grammy.

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.