Forum Discussion

allensmith81's avatar
2 days ago

Creating a blog on behalf of another user - GraphQL

Hi all,

In classic we could create a blog on behalf of another user if the API user creating the blog had the permission to switch user. This was achieved using a APIv1 call the message endpoint and passing in the parameter message.author=id/<userid> in the api call.

As far as I know this was not included in APIv2 and I can't find it in graphAPI and its a very crucial function for us until LarryI adds Ghost Writing to the platform!

I have tried everything I can think of and it won't let me do this.

1 Reply

  • AdamN's avatar
    AdamN
    Khoros Oracle
    17 hours ago

    Hi allensmith81​ , while coAuthors is a valid input for creating blog articles, it doesn't appear that our GraphQL currently includes an input field to set the original author.

    One potential work-around, if you're using API v1 Authentication there's a way to essentially "switch users" via API. This allows a user with admin permissions to obtain an API session key for another user. 

    You do this by passing in the desired user via the user.login parameter, and making the request with an admin user session key. This should return a session key for the user specified via user.login. If you're not familiar with API V1 Authentication, more details here: https://developer.khoros.com/khoroscommunitydevdocs/docs/session-key#retrieve-the-session-key 

    This article in our Dev Docs gives a more detailed example of how this works for obtaining the session key: https://developer.khoros.com/khoroscommunitydevdocs/docs/create-subscriptions-for-another-user#example 

    Once you have the session key for the desired user, you can then make the GraphQL call to create the blog article using the API v1 session key for that user, passing it into the request via the li-api-session-key request header.

    I hope this helps!