我最近从使用Java Facebook Ads SDK 2.10升级到使用版本2.11。
此升级引入的一个错误是在我尝试从Business对象获取ProductCatalog对象的代码中。
APINodeList<ProductCatalog> productCatalogs =
new Business(businessId, context).getProductCatalogs().execute(condition);
方法&#34; getProductCatalogs()&#34;已在版本2.11中删除,可以在GitHub here.
上看到但&#34; ProductCatalog&#34;对象仍然是一个东西,所以我希望应该有一些标准的解决方法来获取这些对象的列表,即使我无法从Business对象获取它们。
如何解决此问题?我在Facebook文档中找不到任何引用。我的搜索只得到more deadends.