Context:
I receive a frontend error when performing a Bits transaction to myself on my own account to test out my extension. When I submit 100 Bits, theres an error “Sorry we could not process this request” with this error on the extension
39464-d8e1b2f….js:1 [GraphQL] One or more GraphQL errors were detected on request 01JPGGQDANSCQT2V3PGH838778. IsEligible: service error
operationName: “IsEligible”
However, when I select 250 bits, and submit, it works, then when I switch back to 100 bits, I do not get the error. It happens rarely and sometimes I need to refresh the extension.
I’m wondering it it has anything to do with the fact i’m giving bits to myself?
It’s in review state
I’m testing on my own channel, purchaser == broadcaster
I have enough bits to cover the transaction
The extension did not transition from not release to release and faulting
All bits are not in development mode
It all works, just not in the following situations:
it doesn’t work on initial load of the page and selecting the first bits option
when selecting a bits product that I can’t cover (too expensive and I don’t have enough bits), and then switching back to a lower bits amount that I can cover
what I mean by my twitch value is this: const twitch = window.Twitch ? window.Twitch.ext : null;
Which I pass in as a prop to my child component which references this and calls the:
if (myAuthentication.getUserId() && twitch.features.isBitsEnabled) {
// Trigger Bits purchase
twitch.bits.useBits(_selected_bits.toString()); // fails here
}
tested your scenario a little and it wasn’t 100% occurance (but not a complete matching test)
Speculation the first: Possible some sort of race condition somewhere I’d guess.
Speculation the second: Most cases I don’t expect this to effect many viewers/purchases since they don’t tend to get half way thru “checkout” abanadon and go around again but I don’t have metrics to support that, and/or explains why it’s not been noticed before.
Not sure why you are toString-ing here as skus should always be strings. But I imagine you are setting your sku to be a the number cost and toString~ing?