TIMGATVOLER

Results 14 comments of TIMGATVOLER

Here's the serialized exception being thrown. ``` { "ClassName": "System.AggregateException", "Message": "One or more errors occurred.", "Data": null, "InnerException": { "ClassName": "System.NullReferenceException", "Message": "Object reference not set to an instance...

No I am not, here's a more simple test without the wrapper incase that is obfuscating something. This is being executed in an ASP.NET .ASPX page. ``` var url =...

I've done very little with asych calls in my career so some of this may just be ignorance on my part. I tried this way as well and I get...

It's a web project so I have to execute it in an aspx page but same issue. Would it make sense to try to create a different shopify object and...

I tried creating a product and the exception thrown is pretty similar. ``` private async System.Threading.Tasks.Task MyTask() { try { var service = new ShopifySharp.ProductService(url, token); var product = new...

I get a Feature 'asynch main' is not available in C# 7.0. I'm using Visual Studio Pro 2017 version 15.9.3. I can get the code to run following the recommendations...

I got it to run as an asych main by modifying the project csproj file. It still throws the exception however. ![ProjFileChange](https://user-images.githubusercontent.com/88549427/128717598-379f3b22-639b-4328-aa34-d586e972b5df.PNG) ![Code2](https://user-images.githubusercontent.com/88549427/128717612-a507ab0d-0ac6-4d50-8eab-03367f5d79ef.PNG) ![Exception2](https://user-images.githubusercontent.com/88549427/128717619-3975113d-79db-48a6-8a79-aa17f8deb723.PNG)

Yes it is a private app. This is really my first time attempting to develop against the shopify api and I am extremely new to using their platform to begin...

I tried altering the permissions on the private app to see if I could get a different exception. When I revoke all access to orders and draft orders I get...

So i downloaded the project from github and added it to my console and debugged the source code. The exception is occuring on line 220 of ShopifyService.cs. I notice that...