> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # GetLike # Package: blog # Namespace: LikeService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/blog/likes/get-like.md ## Permission Scopes: Read Blog : SCOPE.DC-BLOG.READ-BLOGS ## Introduction Retrieves a like created by the currently authenticated site visitor or member. >**Note:** >This method requires [visitor or member authentication](https://dev.wix.com/docs/api-reference/articles/authentication/about-identities.md). --- ## REST API ### Schema ``` Method: getLike Description: Retrieves a like created by the currently authenticated site visitor or member. >**Note:** >This method requires [visitor or member authentication](https://dev.wix.com/docs/api-reference/articles/authentication/about-identities.md). URL: https://www.wixapis.com/blog/v1/likes/{likeId} Method: GET # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: likeId Method parameters: param name: likeId | type: none | required: true Return type: GetLikeResponse - name: like | type: Like | description: Retrieved like. - name: id | type: string | description: Like GUID. - name: createdDate | type: string | description: Date and time the like was created. - name: entityId | type: string | description: GUID of the specific blog content being liked, such as a blog post or comment. - name: fqdn | type: string | description: Fully qualified domain name that identifies the type of blog content being liked. For example, `wix.blog.v3.post` for blog posts. ``` ### Examples ### Get a specific like ```curl curl -X GET \ 'https://www.wixapis.com/blog/v1/likes/87654321-4321-4321-4321-210987654321' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.blog.LikeService.getLike(likeId) Description: Retrieves a like created by the currently authenticated site visitor or member. >**Note:** >This method requires [visitor or member authentication](https://dev.wix.com/docs/api-reference/articles/authentication/about-identities.md). # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: likeId Method parameters: param name: likeId | type: string | description: Like GUID. | required: true Return type: PROMISE - name: _id | type: string | description: Like GUID. - name: _createdDate | type: Date | description: Date and time the like was created. - name: entityId | type: string | description: GUID of the specific blog content being liked, such as a blog post or comment. - name: fqdn | type: string | description: Fully qualified domain name that identifies the type of blog content being liked. For example, `wix.blog.v3.post` for blog posts. ``` ### Examples ### getLike ```javascript import { likes } from '@wix/blog'; async function getLike(likeId) { const response = await likes.getLike(likeId); }; ``` ### getLike (with elevated permissions) ```javascript import { likes } from '@wix/blog'; import { auth } from '@wix/essentials'; async function myGetLikeMethod(likeId) { const elevatedGetLike = auth.elevate(likes.getLike); const response = await elevatedGetLike(likeId); } ``` ### getLike (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { likes } from '@wix/blog'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { likes }, // Include the auth strategy and host as relevant }); async function getLike(likeId) { const response = await myWixClient.likes.getLike(likeId); }; ``` ---