facebook-sdk-for-unity
facebook-sdk-for-unity copied to clipboard
"_valueToSum" parameter in the event manager is empty when upgraded to SDK v16.0.1
Checklist
- [ ] Update to SDK v16.0.1
- [ ] Make a in-app purchase
- [ ] Go to "test events" section in "event manager" in facebook consule
- [ ] The "_valueToSum" parameter is empty
Environment
- Unity Editor Version:
2021.3.20f1 - Unity SDK Version:
16.0.1 - Installation Platform & Verison:
iOSall versions
Goals
I want to get see how much the user spent in the IAP
Expected Results
I want to get see how much the user spent in the IAP
Actual Results
can not see how much the user spent in the IAP
Steps to Reproduce
What are the steps necessary to reproduce this issue?
Code Samples & Details
public void PurchaseReport(string packageId, float priceAmount, string priceCurrency)
{
if (FB.IsInitialized)
{
var iapParameters = new Dictionary<string, object>();
iapParameters["packageId"] = packageId;
FB.LogPurchase(
priceAmount,
priceCurrency,
iapParameters
);
}
}
Can confirm the same behaviour on Android
I have the same issue, valueToSum always is empty, some way to solve it? I am coding on IOs (Swift) / Android (java)
Same here, still an issue on SDK 17.0.0
Same issue on SDK 17.0.0. The Conversion API is difficult to use. I hope this get fixed soon.