Jump to content

Recommended Posts

Posted

#!/usr/bin/env python3

from Flask import Flask, request, jsonify
from Flask_Cors import CORS
import requests

app = Flask(__name__)
CORS(app)  # Enables CORS for all routes

@app.route('/proxy', methods=['GET'])
def proxy():
    url = request.args.get('url')
    if not url:
        return jsonify({'error': 'URL parameter is required'}), 400

    try:
        response = requests.get(url)
        return (response.content, response.status_code, response.headers.items())
    except Exception as e:
        return jsonify({'error': str(e)}), 500

# This part will run the Flask app under WSGI
if __name__ == '__main__':
    app.run(debug=True)

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...