Giter Site home page Giter Site logo

How to use CORS? about telegraph HOT 4 CLOSED

building42 avatar building42 commented on May 19, 2024
How to use CORS?

from telegraph.

Comments (4)

minwookH avatar minwookH commented on May 19, 2024

Sorry.
I success after header.

from telegraph.

yvbeek avatar yvbeek commented on May 19, 2024

@pmpmopm1 Not a problem. If you are using this in a development scenario you can send the following header back to the client:

Access-Control-Allow-Origin: *

If you want to make it a bit fancier, you can create a handler:

public class HTTPCORSHandler: HTTPRequestHandler {
  public func respond(to request: HTTPRequest, nextHandler: HTTPRequest.Handler) throws -> HTTPResponse? {
    let response = try nextHandler(request)

    // Add access control header for GET requests
    if request.method == .GET { 
      response?.headers["Access-Control-Allow-Origin"] = "*"
    }

    return response
  }
}

For increased security you can add additional checks, dig down into the request, and send back different CORS headers for different clients.

from telegraph.

YiYiZheng avatar YiYiZheng commented on May 19, 2024

Could you pls show the code how to set the header. Thx

from telegraph.

yvbeek avatar yvbeek commented on May 19, 2024

@YiYiZheng I've added a section about CORS to the readme:
https://github.com/Building42/Telegraph#http-cross-origin-resource-sharing-cors

If you have a response object, simply set the header with:

response.headers["Access-Control-Allow-Origin"] = "*"

from telegraph.

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.