Scribe has made it extremely easy to work with their API. Currently, in my limited free time, I am working on a reusable C# library to send and receive data from Scribe's API. Once it is completed for Version 1, I will list it to GitHub, so anyone can consume it and provide feedback on improvements. There will be a fully built out wiki with how to consume the library with references to the Scribe API documentation. Also there will be both TDD (Test Driven Development) and BDD (Behavior Driven Development) projects. This way you can see examples of how to consume the library as well as what I tested before release. If you are not familiar with BDD, I recommend you check out my blog post in my Dynamics 365 blog, that gives a high level overview of it.
Anyways, back to what this post is about. While working on the library, I came across one small issue around TLS 1.2 and making sure that the web request uses it. Luckily, this is really easy to set in C#, when using .NET 4.5. By default .NET 4.5 does not send TLS 1.2. It is supported, just not the default. So if TLS 1.2 is set for an endpoint, then we need to specify to use it. This way we decrease the chance of an error occurring. Here is a blog post I came across that helped me with my issue.
Because I am using C# .NET 4.5 I simply needed to add the following line of code:
The line of code is added right before my HttpWebRequest. Here is the fully working request method:
In this code I do use a factory to determine what kind of response I need to return. It could be just a string response or a JSON string response response. I have tested this against both Sandbox and Production API's with Scribe Online and it does work. The only other thing I want to note in the above code, is I am sending a content length of 0. This is because I did receive some error messages where content length was required, even though I wasn't sending a body. If you need to send a JSON content body, there is the method where I do that:
If you need any help on working with the Scribe Api, please feel free to leave a comment below or leave a post in the Scribe Forums. Also check out Scribe's Developer Portal for additional information.
References:
Tarnovskiy, S. (2016, April 28). TLS 1.2 and .NET Support: How to Avoid Connection Errors. Retrieved April 30, 2018, from https://blogs.perficient.com/microsoft/2016/04/tsl-1-2-and-net-support/
Anyways, back to what this post is about. While working on the library, I came across one small issue around TLS 1.2 and making sure that the web request uses it. Luckily, this is really easy to set in C#, when using .NET 4.5. By default .NET 4.5 does not send TLS 1.2. It is supported, just not the default. So if TLS 1.2 is set for an endpoint, then we need to specify to use it. This way we decrease the chance of an error occurring. Here is a blog post I came across that helped me with my issue.
Because I am using C# .NET 4.5 I simply needed to add the following line of code:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12
The line of code is added right before my HttpWebRequest. Here is the fully working request method:
public string SendRequest(string username, string password, string url, string method)
{
WebResponseFactory factory = new WebResponseFactory();
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Method = method;
request.Headers.Add("Authorization", "Basic " + Convert.ToBase64String(Encoding.UTF8.GetBytes($"{username}:{password}")));
request.ContentType = ParameterContentTypeSettings.applicationjson;
request.ContentLength = 0;
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
return factory.ProcessResponse(response);
}
In this code I do use a factory to determine what kind of response I need to return. It could be just a string response or a JSON string response response. I have tested this against both Sandbox and Production API's with Scribe Online and it does work. The only other thing I want to note in the above code, is I am sending a content length of 0. This is because I did receive some error messages where content length was required, even though I wasn't sending a body. If you need to send a JSON content body, there is the method where I do that:
public string SendRequest(string username, string password, string url, string method, string contentBody)
{
ASCIIEncoding encoding = new ASCIIEncoding();
byte[] encodedData = encoding.GetBytes(contentBody);
WebResponseFactory factory = new WebResponseFactory();
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Method = method;
request.Headers.Add("Authorization", "Basic " + Convert.ToBase64String(Encoding.UTF8.GetBytes($"{username}:{password}")));
request.ContentType = ParameterContentTypeSettings.applicationjson;
request.ContentLength = encodedData.Length;
var requestStream = request.GetRequestStream();
requestStream.Write(encodedData, 0, encodedData.Length);
requestStream.Close();
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
return factory.ProcessResponse(response);
}
If you need any help on working with the Scribe Api, please feel free to leave a comment below or leave a post in the Scribe Forums. Also check out Scribe's Developer Portal for additional information.
References:
Tarnovskiy, S. (2016, April 28). TLS 1.2 and .NET Support: How to Avoid Connection Errors. Retrieved April 30, 2018, from https://blogs.perficient.com/microsoft/2016/04/tsl-1-2-and-net-support/
ReplyDeleteyour explanation way is too good, very easy to understand for all readers. Thank you for providing the best details and I want more unique posts.
Primavera Training in Chennai
Primavera Course in Chennai
Tableau Training in Chennai
Spark Training in Chennai
Power BI Training in Chennai
Excel Training in Chennai
Oracle Training in Chennai
Oracle DBA Training in Chennai
Social Media Marketing Courses in Chennai
Good explanation with appropriate solution.
ReplyDeleteArticle submission sites
Guest posting sites
Excellent post. The author has shared the post in a unique way. Have been in a wait for more updates. Do share more.
ReplyDeleteGerman Classes in Mulund
German Language Classes in Mulund
French Classes in Mulund
French Classes in Mulund East
Spoken English Classes in Chennai
Best Spoken English Classes in Chennai
English Speaking Classes in Mumbai
IELTS Coaching in Chennai
IELTS Classes in Mumbai
I feel satisfied to read your blog, you have been delivering a useful & unique information to our vision.keep blogging.
ReplyDeleteRegards,
microsoft dynamics training in chennai
Ethical Hacking Course in Chennai
PHP Training in Chennai
Web Designing Course in Chennai
microsoft dynamics crm training
gst training in chennai
microsoft dynamics crm training institutes in chennai
ccna Training in Chennai
web designing course
best weight machines
ReplyDeleteNice Article!!!
ReplyDeleteweb designing course with placement
php mysql course in chennai
magento 2 course | magento 2 training
I have been reading for the past two days about your blogs and topics, still on fetching! Wondering about your words on each line was massively effective.keep it up
ReplyDeleteAi & Artificial Intelligence Course in Chennai
PHP Training in Chennai
Ethical Hacking Course in Chennai Blue Prism Training in Chennai
UiPath Training in Chennai
Aivivu chuyên vé máy bay, tham khảo
ReplyDeleteve may bay di my gia re
vé máy bay đà nẵng hcm
vé máy bay hà nội giá rẻ
vé nha trang sài gòn
vé máy bay huế đà lạt
taxi sân bay nội bài 7 chỗ
combo nha trang 3 ngày 2 đêm 2021
This is really nice. I love it. Great work done.
ReplyDeleteLooking for ways to set up your new router on your local network visit us at 192.168.1.1 we might be able to help you with that.
ReplyDeleteLooking for ways to set up your new router on your local network visit us at 192.168.0.1 we might be able to help you with that.
ESPN is the first company that works as a medium for bringing live sports online so that one can watch their favorite sports anytime or anywhere. To know more about the ESPN subscription plans or any other info visit espn.com/activate
coinbase pro login Despite the presence of a wide range of digital wallets and crypto-exchange platforms, users find Coinbase an easy-to-use platform. It uses advanced technology for cryptocurrency storage and came up with multi-angled trading services for corporate and personal account holders.
ReplyDeleteCoinbase Pro Login its user to use their old coinbase account login details to enhance the productivity of crypto trading.
ReplyDeleteCoinbase Pro Login
Coinbase Pro Login
coinbase pro login
geek squad chat
geek squad tech support
AOL MAIL LOGIN is all about convenience and efficiency. As such, creating and accessing your Email Account is extremely simple and quick. For this, you must go to its official website i.e. “mail.aol.com”. In order to create/ access your account smoothly without any hassle, you must follow the instructions given below.
ReplyDeleteFor More Information Visit Our Site:
TURBOTAX LOGIN
TUBI.TV/ACTIVATE
amazon.com/code
Obviously a satisfying estimation. i've affirmation this bewildering announce. much obliged to you for sharing proposal generally it. I in truth further to that. much appreciated accurately part to your meet. Wifi Hack Online
ReplyDeleteI waterfrontt any expression to understand this call.....truely i'm dazzled from this make recognized....the person that make this screen it changed into an excellent human..thanks for shared this long past us. Norton Internet Security Full Crack
ReplyDeleteAnd should you get pleasure from both playing in} cards in a stay poker site and playing in} classic on line casino games, then Ignition might be the most effective on-line on line casino for you. No bonus code is important for this 150% deposit match as much as} $3,000 for poker and on line casino games. Most on-line playing sites will completely allow you to play free on line casino games first. This is to check out the on line casino to see should you like finest way|the way in which} the games play, or just, to see should you like the look of it. This additionally be|may additionally be|can be} a great way|a good way|an efficient way} bet365 to apply and work out the rules of a recreation.
ReplyDeleteThis comment has been removed by the author.
ReplyDeletePack smart, travel light – our Best Lightweight Backpack for Hiking are engineered for efficiency.
ReplyDeleteNice Work.CCleaner Free Download with Crack
ReplyDeleteGreat Work.EaseUS Data Recovery Crack
ReplyDelete