django-rest-framework icon indicating copy to clipboard operation
django-rest-framework copied to clipboard

header options

Open dineshreddypaidi opened this issue 1 year ago • 1 comments

iam working with token autentication for some of endpoint need auth token and need to be included in header options.. but in static web browser doesnot show any of header options and for every endpoint iam getting an auth token error i checked endpoints with other clients postman. it is working fine.. can add a feature for posting header option also to the static web browser views

dineshreddypaidi avatar Oct 28 '24 18:10 dineshreddypaidi

After receiving the token from the backend, it should be saved in the browser's local storage for future authentication, as follows:

const authToken = response.headers.get('Authorization');
if (authToken) {
    localStorage.setItem('authToken', authToken);
}

Now, with every request, you will need to include the token in the header. You can do it as follows:

function fetchWithAuth(url, options = {}) {
    const authToken = localStorage.getItem('authToken'); 

    
    const headers = {
        ...options.headers,
        'Authorization': authToken ? authToken : '',
        'Content-Type': 'application/json', 
    };

    /
    return fetch(url, {
        ...options,
        headers,
    });
}

Both are parts of the frontend.

please let me know if this worked.

Dhruv-Bajaj-code avatar Nov 10 '24 12:11 Dhruv-Bajaj-code