Hi all, I am using ember 3.28. Any request from rest adaptor does not send cookie which has session id, here is my adaptor
import RESTAdapter from '@ember-data/adapter/rest';
export default class StudentAdapter extends RESTAdapter {
host = 'http://localhost:8082/Backend';
namespace = 'api';
}
Can anyone provide suggestions to how to send cookie with rest adaptor request
4 posts - 2 participants