We create web project with RestFull+OAuth.
Its looks good - client sent token for each request in header Authorize. But for some request we can`t add header. For example when we print some image or document. Because we use window.open - at our disposal only GET params.
At now i see one way - for that request add token to UPL as get params(?token=xxxxxxx) and not show url line in child browser window.
But i think its not good way. Maybe somebody have other idea or practicals of implement it.