Giter Site home page Giter Site logo

How to use Rack::Cors about agoo HOT 7 CLOSED

ohler55 avatar ohler55 commented on May 17, 2024
How to use Rack::Cors

from agoo.

Comments (7)

ohler55 avatar ohler55 commented on May 17, 2024

There isn't anything special needed. It sounds more like a gem issue though. Is rack-cors the correct require name?

from agoo.

ohler55 avatar ohler55 commented on May 17, 2024

Try require 'rack/cors'

from agoo.

adamdawkins avatar adamdawkins commented on May 17, 2024

Yea, that was the problem. I'm still having no joy here, editing the config.ru from one of the examples -but I'm aware there's a high chance this is just me and nothing Agoo specific:

# The Rack handler.
class FlyHandler
  def self.call(req)
    [ 200, { }, [ "flying fish" ] ]
  end
end
# ...
use Rack::Cors do
  allow do
    origins "*"
    resource "*", headers: :any, methods: %i[get post options head]
  end
end

run FlyHandler

And I'm starting with:

$ bundle exec rackup -s agoo -Ographql=/graphql

Can you see anything obvious? If not I'll just close this, thanks.

from agoo.

adamdawkins avatar adamdawkins commented on May 17, 2024

Alternatively, wondering if I could skip Rack::Cors and just add the headers myself to the routes, but not sure how I'd hook that into the Agoo::GraphQL stuff.

from agoo.

ohler55 avatar ohler55 commented on May 17, 2024

Agoo has APIs for adding headers. Check out the example/graphql/song.rb file. Search for CORS.

from agoo.

adamdawkins avatar adamdawkins commented on May 17, 2024

I swear I searched the whole repo, don't know how I missed that!

Sorry for bothering!

from agoo.

ohler55 avatar ohler55 commented on May 17, 2024

All good. It's nice to know people are using my software.

from agoo.

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.