Author: selaromdotnet

Sitecore

Adding Ratings and Reviews to Sitecore Commerce with YotPo

Read more at XCentium: Adding Ratings and Reviews to Sitecore Commerce with YotPo Ratings and reviews are important features to offer on an ecommerce website, giving customers confidence to make a purchase. Adding such a feature to Sitecore is simple thanks to Yotpo, a leading provider of reviews, ratings, and many more related commerce features. With […]

CONTINUE READING
Error Fix

Sourcetree Suddenly Prompting for Github Credentials

As a developer you’re probably familiar with the phrase “It was working before and I didn’t change anything!” That hit me today as I attempted to pull an update from a Github repo using Sourcetree. I was prompted for Github credentials, which were repeatedly rejected. After verifying that the credentials were valid (and that I […]

CONTINUE READING
Xamarin Forms

Xamarin Forms: Public C# Properties Missing on Android

While working on the mobile apps for McAllen Next (my new side project, stay tuned for more soon!), I discovered a very strange issue when running the app on Android; I kept getting repeated errors like this: Binding: ‘IsLoading’ property not found on ‘RegionModel’, target property: ‘Xamarin.Forms.Label’ and as such, the UI would not bind […]

CONTINUE READING
C#

C# Support for the Google Cloud Platform

At the end of the day, like most APIs you encounter in the wild, Google services are exposed as standard REST endpoints. If you know how to create, authenticate, and issue an HTTP request, you have everything you need to add Google’s extensive list of services (including the Google Cloud Platform) to your applications. However, most […]

CONTINUE READING
C#

Authenticating Your C# Application for the Google Cloud Platform – Part 2

Now that we understand how to authenticate a C# application to work with your own project’s GCP resources, let’s take it a step further. In this post, we’ll look at how we can combine that connectivity with end user data, via three-legged OAUTH authorization, to perform operations on user content, with their permission of course. […]

CONTINUE READING
Uncategorized

Authenticating Your C# Application for the Google Cloud Platform – Part 1

The new C# libraries for the Google Cloud Platform, available on NuGet, make it easy to get started adding these features to your platform. However, before you can use them, you obviously need to authenticate your application for access. Google uses OAUTH 2.0 as the protocol for authentication In this post we’ll discuss the different […]

CONTINUE READING