jorenvh/laravel-share

Not working while sharing on linkedin.

Opened this issue · 0 comments

I am sharing to linkedin directly by the url (http://www.linkedin.com/shareArticle?mini=true&url={{ route("candidate.test.perform", $test->slug) }}), but it shows something went wrong on the linkedin, and when i use Share::page('route')->linkedin() it throws error which says page is not static method and i cannot call it statically, after that i tried another way, i made object of share class and then call page function but it shows blank page, can anyone help ??

$share = new \Jorenvh\Share\Share();
$share->page(route("candidate.test.perform", 123))->linkedin();

Above code is also not working.