Steve Wilford
Steve Wilford
> @jtbm37 > > ### Start the server > `OmniSharp -v -s /path/to/my/project/` > Unfortunately I failed at the first step on macOS, see #2440. +1 for creating some documentation...
This is the combined list of commands that I run via Azure Pipelines. They actually run as 3 separate steps (rate limit, Carthage, rate limit) to ensure the last rate...
Yes because the curl command is doing an authenticated check of the rate_limit endpoint. System.AccessToken relates to the Azure OAuth token afaik which wouldn’t be a valid GitHub PAT. FYI...
@ikesyo the token didn't have `public_repo` previously, but I have since enabled it and confirmed that requests are using that scope, unfortunately that has made no difference, I still get...
I've dug into this a bit more and it would appear that not all requests use the access token. Using `mitmproxy` I can see that when running `carthage bootstrap` the...
I'm struggling to understand what's going on here... It's definitely a problem with the request to ``` https://api.github.com/repositories/20738855/releases/tags/2.6.31 ``` However nothing appears to be generating that URL so I can't...
After sleeping on it I realised that there was a redirection occurring and there is no code to pass the Authorization header through to the new request. #2713 resolves this...
@andrewlock any chance you can have a look at this soon? I think it'll be a really useful addition
Resolved the prior conflicts, and thanks to the work in #95 the diff is significantly smaller now.
I have basically this exact same issue except using [StronglyTypedId](https://github.com/andrewlock/StronglyTypedId). @andrewgunn the approach I'm taking is to use a [Default Interface Method](https://github.com/reactiveui/refit#default-interface-methods) to wrap the actual Refit definition so I...