-
An error gets thrown by the React Native Firebase wrapper (v5) when more than 25 parameters are emitted to Firebase. We have the Firebase 360 version that allows more than 25 parameters to be logged. Is there a React Native Firebase version that allows 25 more than params without throwing an error? Or is there a recommended way of handling this? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 8 replies
-
Hi there! v5 is quite old, I would definitely upgrade. That said, I was just in the analytics code recently for #5630 and there is still a 25 parameter limit. I wasn't aware that was variable! Can you point me to any documentation about this Firebase 360 thing - I'm totally unaware of it 😅 - if more than 25 parameters are valid for certain cases I'm sure we can accommodate that It will be in a version after current though, so work on getting to v12.7.4 in the meanwhile so you'll be able to ingest the change if/when it happens... |
Beta Was this translation helpful? Give feedback.
-
Yes sure that's what I was after thank you. I didn't mean to ask for a
personalised service!
…On Thu, 2 Sept 2021 at 17:47, Mike Hardy ***@***.***> wrote:
I'll try to remember to post here, but an easy way is to "watch" the repo
with a custom watch on releases only, then check the changelog when a
release is posted
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#5676 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AQ6WU3ZE4T56JFHACWR3VBTT74FXLANCNFSM5DHU4W2Q>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Beta Was this translation helpful? Give feedback.
-
Hi all, I was about to enquire about this also. Very grateful for this react native firebase project, but I just wanted to flag that this current 25 param limit is a blocker on my end also as I use the Firebase payload to trigger GA events via GTM. I'm glad to hear the limit is being raised to 100, this will resolve the issue on my end. Thanks! |
Beta Was this translation helpful? Give feedback.
-
I've got PR #5687 open for this and I should be able to merge and release it shortly. Here's the proposed API: /**
* Allows an override to the default 25 event parameter limit. This may be called
* for users with upgraded analytics accounts to raise the parameter limit to their actual
* account limit, e.g. 100
*
* @param limit
*/
setEventParamLimit(limit: number): Promise<void>; Does that seem like it will work well for everyone? |
Beta Was this translation helpful? Give feedback.
Hi there! v5 is quite old, I would definitely upgrade. That said, I was just in the analytics code recently for #5630 and there is still a 25 parameter limit. I wasn't aware that was variable! Can you point me to any documentation about this Firebase 360 thing - I'm totally unaware of it 😅 - if more than 25 parameters are valid for certain cases I'm sure we can accommodate that
It will be in a version after current though, so work on getting to v12.7.4 in the meanwhile so you'll be able to ingest the change if/when it happens...