Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

243
Vistas
No 'Access-Control-Allow-Origin' header is present on the requested resource. when running a Python script using Javascript

I am new to AJAX and Flask and I am trying to make a Chrome extension that runs a Python script from Javascript. The script moves the mouse at a certain coordinate and clicks there.

This is the Javascript code:

function click_coord() {
    $.ajax({
        url: "http://127.0.0.1:5000/click_coord/",
        type: "POST",
        success: function(resp){
        console.log(resp);
    }
    });
 }

This is the Python code:

from flask import Flask, jsonify
from flask_cors import CORS, cross_origin
from pynput.mouse import Button, Controller

app = Flask(__name__)
cors = CORS(app) 
app.config['CORS_HEADERS'] = 'Content-Type'

@app.route('/click_coord/', methods=['POST']) 
def click_coord():
    move_mouse()
    a = 15
    b = 17
    return jsonify(a+b)

def move_mouse():
    mouse = Controller()

    mouse.position = (201, 549)

    mouse.press(Button.left)
    mouse.release(Button.left)

if __name__ == "__main__":
    app.run(debug=True)

The error I get is: No 'Access-Control-Allow-Origin' header is present on the requested resource. I only get this error if I call the function "move_mouse". If I don't, the code runs properly.

I saw in another post that a person had a problem because they didn't add the correct permissions but i added: "permissions": ["tabs", "http://localhost/*"] to the Json manifest

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Try adding a resource to your CORS(app, resources={r"": {"origins": ""}})

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda