IT Log

Record various IT issues and difficulties.

Tag: CORS


  • How to Connect Frontend and Go Backend

    To connect your frontend with a Go backend, follow these organized steps: Set Up the Go Backend: Create a new Go project and initialize it. Use net/http package to handle HTTP requests. Set up an HTTP server using http.ListenAndServe. Create API Endpoints: Define routes for different HTTP methods (GET, POST, etc.) using functions that handle…


  • How to Set Headers in Frontend

    To set headers in the frontend, you can use JavaScript’s Fetch API or libraries like Axios. Here’s a concise guide: Using Fetch API: fetch(‘https://api.example.com’, { method: ‘POST’, headers: { ‘Content-Type’: ‘application/json’, ‘Authorization’: ‘Bearer your-token’ }, body: JSON.stringify({ name: ‘John’ }) }); Using Axios: axios.post(‘https://api.example.com’, { name: ‘John’ }, { headers: { ‘Content-Type’: ‘application/json’, ‘Authorization’: ‘Bearer…


  • How to Protect Front-End Transmitted Parameters

    To protect front-end transmitted parameters effectively, follow these organized steps: Use HTTPS: Ensure all data transmission uses SSL/TLS via HTTPS to encrypt data between client and server. Implement HTTP Only Cookies: Set cookies with the Secure and HttpOnly flags to prevent XSS attacks and script access. Configure CORS: Restrict allowed domains using CORS headers to…