VNG-Zalo / ZaloSDK-iOS

MIT License
7 stars 5 forks source link

feed message is null when share to zalo app #16

Open kingkongsama opened 1 year ago

kingkongsama commented 1 year ago

Hi, I'm try to using zalosdk(4.1.0120) to share to the Zalo app. when jump into Zalo sharing window, the sharing link is correct, but message textfield is null.

here is my code

====================================================================================

ZOFeed *feed = [[ZOFeed alloc] initWithLink:@"http://www.bing.com"
                                    appName:@"my app"
                                    message:@"there is my app sharing"
                                     others:nil];

feed.linkTitle = @"my app 1";
feed.linkDesc = @"my app 2";
feed.linkSource = @"my app 3";

[[ZaloSDK sharedInstance] shareFeed:feed
                       inController:MyAppDelegate.topViewController
                           callback:^(ZOShareResponseObject *response) {

}];

====================================================================================

there the zalo sharing window 2023_03_03_13_37_IMG_0136

Could you give me some help ? thanks~~

Lujialun commented 1 year ago

I've encountered the same problem. Have you solved it?