在针对给定Facebook位置页面的Facebook Graph API的更新请求上发送一些place_topics
时,我收到此错误。
{"error"=>{"message"=>"(#371) Some subcategories don't represent a place.", "type"=>"OAuthException", "code"=>371, "error_subcode"=>1721087, "fbtrace_id"=>"CIewiBZL+jf"}}
通过将category_id
更改为另一个来修复。顺便说一句,我想知道是否有办法知道哪些类别是允许的,哪些类别不允许。如果事先知道我们在工具的编辑过程中禁止使用某些Facebook类别并避免错误,那将是很好的。
谢谢,
大卫。
答案 0 :(得分:0)
在图形浏览器中使用@interface NSString (Tagger)
@property (nonatomic, readonly, nullable) NSString *language;
@end
@implementation NSString (Tagger)
- (NSString *)language {
return [NSLinguisticTagger dominantLanguageForString:self];
}
@end
NSLog(@"%@", @"Good morning".language);
NSLog(@"%@", @"Buenos días".language);
获取有效的地点主题列表