Quantcast
Channel: User Simon_Weaver - Stack Overflow
Browsing all 85 articles
Browse latest View live
↧

Comment by Simon_Weaver on Error TF30063: You are not authorized to access...

Had this happen again today when I got a new laptop. The new laptop forced me to change my password, then on the previous laptop I got all kinds of errors. No amount of refreshing or trying to log-in...

View Article


Comment by Simon_Weaver on Why are commerce_* permissions disabled when...

I got this error today and I'm very irked by the chicken-and-egg nature of it. I'm literally just starting to try and create an app to access commerce orders - so how can I possibly make my app 'live'...

View Article

Comment by Simon_Weaver on Facebook SDK for .NET Core

While you may be able to use this as a jumping point it doesn't even support POST requests. So it's far from being a ready to go solution.

View Article

Comment by Simon_Weaver on Facebook SDK for .NET Core

Truly can't fathom why Facebook doesn't seem to care about creating something with official support for .NET. I was hoping to play around and have some fun with the new CommerceAPI and my Meta shop but...

View Article

Comment by Simon_Weaver on Graph Api for getting whole objects schema

Note: I just removed 'java' from the original tags. For anyone finding this in the future that's why this answer refers to Java, but I removed the tag since the question is about Facebook API and...

View Article


Comment by Simon_Weaver on Running a T4 template using C#

@DanielBallinger Haha I had the exact opposite problem - mine was set to Preprocessor! I was trying to read some of the Microsoft docs and getting VERY frustrated that all that my T4 template was doing...

View Article

Comment by Simon_Weaver on MSBuild locking dll used on T4 template generated...

Ugh! Visual Studio locking files you're working on is soooo 2002. I used to get so mad back then because it was a constant battle - I'd slam my office door and pieces of the ceiling would fall down.

View Article

Comment by Simon_Weaver on How can I use Linq in a T4 template?

Never did understand why when I press F12 on a LINQ .Select method call and it takes me to System.Linq.Enumerable the assembly name shown at the top is System.Linq but you need the System.Core assembly...

View Article


Comment by Simon_Weaver on How to Parse Facebook Data

I'm doing this for the CommerceAPI using a custom JsonConverter that skips over the data property. It's nowhere near complete enough to share but since the CommerceAPI returns a whole tree of things it...

View Article


Comment by Simon_Weaver on How to solve a "HTTP Error 404.3 - Not Found" error?

Because I already did what the most comparable answer said and it was insufficient to get it working for .NET 4. Screenshots are far easier to consume for answers like this so I added it. I wanted to...

View Article

Comment by Simon_Weaver on Selecting a "null" value using mat-option with...

There's a very long discussion about this github.com/angular/components/issues/25120 but unfortunately no direct resolution.

View Article

Comment by Simon_Weaver on iOS 15 Safari floating address bar

@ScreamZ I don't remember the exact details, but it's either been renamed or they removed it (perhaps - and again I don't remember the details - because it caused conflicts or had performance issues)....

View Article

How do I send event_id with Facebook pixel?

I get an error from Facebook:Purchase Event Missing Some Deduplication Parameters You're sendingPurchase events through both your pixel and the Conversions API, butthey're not being deduplicated...

View Article


Answer by Simon_Weaver for Loading icon from Material Icon Registry errors...

You can get this error if you usethis.registerIcon('cart-icon', '/assets/images/icons/cart_icon.svg');instead ofthis.registerIconPath('cart-icon', '/assets/images/icons/cart_icon.svg');If you use the...

View Article

Answer by Simon_Weaver for Unable to run angular application with esbuild...

I had the same issue locally with an Angular 17 project on Windows when running @angular-devkit/build-angular:browser-esbuild (not the :application builder)I did not expect this to work (because I am...

View Article


Answer by Simon_Weaver for JSON.Net Self referencing loop detected

Make sure you aren't accidentally serializing a Task<T>You can get this error if you forget to await an asynchronous method whose return value you intended to serialize. public async...

View Article

Answer by Simon_Weaver for How does the "position: sticky;" property work?

Few more things I've come across:When your sticky element is a component (angular etc)If the 'sticky' element itself is a component with a custom element-selector, such as an angular component named...

View Article


Answer by Simon_Weaver for Need to understand the usage of SemaphoreSlim

Important: Don't assume WaitAsync throws an exception if it times outIf the semaphore has available threads remaining (where CacheSemaphore.CurrentCount > 0) then await...

View Article

ApplePayJS InvalidAccessError

Trying to integrate ApplePayJS into my website and getting this annoying message::InvalidAccessError Code 15"The object does not support the operation or argument"Everything seems to have been going...

View Article

Answer by Simon_Weaver for Trigger matAutocomplete programmatically

You can also read the trigger from the <input> field explicitly like this - which may be necessary if you have multiple search fields.<input #searchAutocompleteTrigger="matAutocompleteTrigger"...

View Article
Browsing all 85 articles
Browse latest View live