| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function share($pinId) |
||
| 28 | { |
||
| 29 | $request = [ |
||
| 30 | "invite_type" => [ |
||
| 31 | "invite_category" => 3, // magic numbers, but I have |
||
| 32 | "invite_object" => 1, // no idea what do they mean |
||
| 33 | "invite_channel" => $linkChannel = 12, |
||
| 34 | ], |
||
| 35 | "object_id" => $pinId, |
||
| 36 | ]; |
||
| 37 | |||
| 38 | $response = $this->post(UrlBuilder::RESOURCE_SHARE_VIA_SOCIAL, $request, true); |
||
| 39 | |||
| 40 | return isset($response['invite_url']) ? $response['invite_url'] : ''; |
||
| 41 | } |
||
| 42 | |||
| 80 |