11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
const url = 'https://swapi.info/api/people/1';
|
|
|
|
const options = {
|
|
method: 'GET',
|
|
|
|
headers: {
|
|
Accept: 'application/json',
|
|
'Content-Type': 'application/json',
|
|
},
|
|
};
|