This is my first post.
I\'ve just started learning Go and Angular and I\'m attempting to connect the angular app to a go api. I\'ve written both and am stuck identi
Here is an example:
this.http .get(url, return new RequestOptions({ headers: new Headers({ Authorization: `Bearer ${authtoken}` }), })) .map(res => res.json());