Larabros\Elogram\Repositories\MediaRepository::getByShortcode PHP 메소드

getByShortcode() 공개 메소드

This method returns the same response as :php:meth:MediaRepository::get
public getByShortcode ( string $shortcode ) : Response
$shortcode string The shortcode of the media object
리턴 Larabros\Elogram\Http\Response
    public function getByShortcode($shortcode)
    {
        return $this->client->request('GET', "media/shortcode/{$shortcode}");
    }