
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
FubarCoder.RestSharp.Portable.OAuth2
Advanced tools
This library contains the OAuth 2.0 authenticators and clients for RestSharp.Portable, which is a port of the OAuth 2.0 authenticators from the original RestSharp project. The OAuth 2.0 clients are a port from the OAuth2 project made by Constantin Titarenko and others. Supported Platforms: - .NET Standard 1.0 - .NET Framework 4 - Silverlight 5 - Portable Class Libraries (Profiles 259 and 328)
This is some kind of a RestSharp port as PCL and for .NET Core.
This project is licensed using the BSD 2-Clause License
RestSharp.Portable can use either HttpWebRequest
or HttpClient
as request engine.
HttpWebRequest
request engineAdvantage:
Disadvantage:
HttpClient
request engineAdvantage:
Disadvantage:
The following is an example to get the ticker from the bitstamp.net website.
public class TickerResult
{
public decimal Last { get; set; }
public decimal High { get; set; }
public decimal Low { get; set; }
public decimal Volume { get; set; }
public decimal Bid { get; set; }
public decimal Ask { get; set; }
}
We use the class with:
using (var client = new RestClient(new Uri("https://www.bitstamp.net/api/")))
{
var request = new RestRequest("ticker", Method.GET);
var result = await client.Execute<TickerResult>(request);
}
The support for community projects can be found in my subreddit /r/FubarDev.
You can get professional support here: Fubar Development Junker
FAQs
This library contains the OAuth 2.0 authenticators and clients for RestSharp.Portable, which is a port of the OAuth 2.0 authenticators from the original RestSharp project. The OAuth 2.0 clients are a port from the OAuth2 project made by Constantin Titarenko and others. Supported Platforms: - .NET Standard 1.0 - .NET Framework 4 - Silverlight 5 - Portable Class Libraries (Profiles 259 and 328)
We found that fubarcoder.restsharp.portable.oauth2 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.