> 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

# GetLongLivedTokenStatus

# Package: socialMedia

# Namespace: AccountService

# Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/social-media/account-v1/get-long-lived-token-status.md

## Permission Scopes:
Manage Social Posts: SCOPE.PROMOTE.MANAGE-SOCIAL-POSTS

## Introduction

Retrieves the connection status of a site's social channel account.

Use this to check whether a channel is connected and able to publish before creating or publishing items.

---

## REST API

### Schema

```
 Method: getLongLivedTokenStatus
 Description: Retrieves the connection status of a site's social channel account.  Use this to check whether a channel is connected and able to publish before creating or publishing items.
 URL: https://www.wixapis.com/social-publisher/v1/{channelName}/long-lived-token-status
 Method: GET
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  channelName
 Method parameters: 
   param name: channelName | type:   none | required: true 
 Return type: GetLongLivedTokenStatusResponse
  - name: status | type: Status | description: Connection status of the channel.  
     - enum:
     -     NEVER_CREATED: The channel was never connected.
     -     VALID: The channel is connected and able to publish.
     -     INVALID: The channel's connection is no longer valid and must be reconnected.
     -     DISCONNECTED: The channel was disconnected.


```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.promoteGrowthToolsPublisher.accounts.getLongLivedTokenStatus(channelName)
 Description: Retrieves the connection status of a site's social channel account.  Use this to check whether a channel is connected and able to publish before creating or publishing items.
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  channelName
 Method parameters: 
   param name: channelName | type: ChannelName | description: Supported social channel. | required: true 
      - enum:
           INSTAGRAM - 
           FACEBOOK - 
           YOUTUBE - 
           LINKEDIN - 
           TWITTER - Deprecated: No longer functional as of July 1, 2026.
           PINTEREST - 
           GBP - Google Business Profile.
           TIKTOK - 
 Return type: PROMISE<GetLongLivedTokenStatusResponse>
  - name: status | type: Status | description: Connection status of the channel.  
     - enum:
     -     NEVER_CREATED: The channel was never connected.
     -     VALID: The channel is connected and able to publish.
     -     INVALID: The channel's connection is no longer valid and must be reconnected.
     -     DISCONNECTED: The channel was disconnected.


```

### Examples

### getLongLivedTokenStatus
```javascript
import { accounts } from '@wix/promote-growth-tools-publisher';

async function getLongLivedTokenStatus(channelName) {
  const response = await accounts.getLongLivedTokenStatus(channelName);
};
```

### getLongLivedTokenStatus (with elevated permissions)
```javascript
import { accounts } from '@wix/promote-growth-tools-publisher';
import { auth } from '@wix/essentials';

async function myGetLongLivedTokenStatusMethod(channelName) {
  const elevatedGetLongLivedTokenStatus = auth.elevate(accounts.getLongLivedTokenStatus);
  const response = await elevatedGetLongLivedTokenStatus(channelName);
}
```

### getLongLivedTokenStatus (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 { accounts } from '@wix/promote-growth-tools-publisher';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed

const myWixClient = createClient ({
  modules: { accounts },
  // Include the auth strategy and host as relevant
});


async function getLongLivedTokenStatus(channelName) {
  const response = await myWixClient.accounts.getLongLivedTokenStatus(channelName);
};
```

---