Sending from a service account isn’t as easy as you’d think. There are a lot of parts to it and configuration issues on the google site of things. I’m going to document the code part, assuming you have a service account with the proper permissions already. Here are the steps
Security and WebAPI
Security Needs Security has always been quite controversial, but it’s mainly due to the fact that the needs vary greatly depending on your needs. In our business, we specialize in internal systems that are 100% dependent on remote web services. We focus 99% on ensuring the data itself is locked down. Dynamic Roles and Levels […]
Databound Kendo Forms (MVVM) using jQuery ajax
To most effectively manage data retrieved via WebApi, it is best to use data-bound objects. By doing this, you can manage an HTML form just as effectively as a c# model. Kendo’s viewmodel can bind a form exactly like KnockOut, letting an entire JSON result set be bound to the objects on the page. Unfortunately, Kendo’s datasource object is a bit awkward and has given us a lot of grief. We’ve found that jQuery’s $.ajax method is much easier to work with.