Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie

I just wanted to retrieve user data from Odoo12 through node.js, so I called 'web/session/authenticate'  which worked. but when I tried to call an image from 'web/image/'  it didn't work and showed error 404. and can't call any route in odoo

However, I tried calling it through Postman, and it worked perfectly.

my code below.

	​
const result = await axios.post(`
http://localhost:8069/web/session/authenticate`, 
{         
​"jsonrpc": "2.0",          
​"params": {           
​ "db": "mydatabase", 
     "login": "admin", 
     "password": password,         
​}      
},       
{
​ headers: {'Content-Type': 'application/json'},       
}     
);
     
if (result && result.data.result != undefined) {
   const res = result.data.result;
const resultImg = await axios.get(` http://localhost:8069/web/image/res.partner/3/image`);

AxiosError: Request failed with status code 404


}
        

       

 

 



Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
5
maj 25
34124
2
maj 23
10831
4
lut 23
43296
2
gru 19
8246
4
wrz 19
4514