Automatically Publish Articles on Juejin: Pure Cookie Connection, AI Writes + Publishes + Analyzes Data for You

If you just want to run a simple platform, try whether the automatic publishing of the affiliate program is effective—starting with Juejin.
The reason is straightforward: Juejin connection only requires a login Cookie (BYOC, no need to apply for a developer account, no need for OAuth), making it the fastest to get started among all platforms. Moreover, Juejin's user profile is very "pure"—active developers in front-end, back-end, and AI fields, with a community leaning towards technology and a willingness to try new things. For those engaged in API reselling, developer tools, and AI applications, this is a group of high-quality, hands-on potential users.
This article will guide you step-by-step: from capturing the Cookie to letting AI publish articles and then viewing data, the entire process.
¶ 1. The Real Mechanism of Juejin Connection (Understand Before You Start)
Juejin uses a pure Cookie BYOC connection:
- Log into your Juejin account in the browser and use the ACE browser extension to capture the login Cookie once;
- This Cookie is securely encrypted and stored, decrypted only when AI calls it, connecting to Juejin as your own identity;
- Technically, it connects directly to the Juejin API using urllib, ensuring stability and speed.
After connecting, AI can do the following:
- List and view your own articles, along with each article's view count / like count / comment count;
- Publish new articles;
- Images in the articles are rendered via external links—meaning you can host images on an accessible image hosting service/CDN (for example, upload images generated by gpt-image-2 to a CDN) and reference the external links in the article for normal display.
¶ 2. Step 1: Install ACE Extension and Capture Juejin Login Cookie
- Open Juejin in your browser and log into your account:
https://juejin.cn, ensuring you are logged in. - Install the ACE browser extension (used to capture the login Cookie).
- Use the extension to capture the login Cookie on the Juejin page.
The action of capturing the Cookie only needs to be done once. If the Cookie expires (for example, if you log out of Juejin or haven't used it for a long time), you can capture it again.
¶ 3. Step 2: Connect Juejin on the Connection Page
- Open Studio:
https://studio.acedata.cloud - In the bottom chat input box, click on "Add Content (+)" → select "Connection"
- Navigate to the connection management page:
https://auth.acedata.cloud/user/connections - Find Juejin / juejin, fill in the Cookie credential you just captured, and complete the connection.

Once connected successfully, the corresponding skill for Juejin will appear in your skill list, and AI will be able to call it.
¶ 4. Step 3: Let AI Write + Publish in Studio
Return to the Studio chat box and give a command directly. Here’s a prompt you can copy (replace <yourID> with your user ID):
Help me write a technical article to be published on Juejin, with the theme: "I created a small tool for automatically generating cover images using the gpt-image-2 API."
Requirements:
1. Targeting back-end/front-end developers, around 1000 words, with a complete runnable code example
(using curl to call https://api.acedata.cloud/openai/images/generations, model=gpt-image-2).
2. Clean formatting, with clear subheadings and standardized code blocks.
3. Naturally include at the end: If you want to try it yourself, here’s the free quota entry
https://platform.acedata.cloud/?inviter=<yourID>
4. Show me the draft first, and after I confirm, publish it to my Juejin account.
The process is "first create a draft → you confirm → publish", giving you the opportunity to check the formatting and code, so make good use of this step.
¶ 5. Step 4: Prepare a Cover Image (gpt-image-2)
Juejin articles require cover images for both the list and details. Let AI conveniently create one, or generate it yourself first:
curl -X POST https://api.acedata.cloud/openai/images/generations \
-H "Authorization: Bearer $ACEDATACLOUD_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-image-2",
"prompt": "Deep blue technology style cover for a technical article, theme: using AI API to automatically generate cover images, simple and flat, with code elements as embellishments",
"size": "1536x1024"
}'
After uploading the generated image to a CDN, provide the external link to AI, allowing it to insert it into the body of the Juejin article—Juejin supports external link rendering, which will display normally.
If you want AI to automatically generate images, let it call the OpenAI MCP's
openai_generate_image(https://openai.mcp.acedata.cloud/mcp), and you won't have to worry about the image hosting.
¶ 6. Step 5: Review Data After Publishing
After a day or two, let AI help you review the results:
List the articles I recently published on my Juejin account, and organize the title, view count, like count, and comment count of each into a table for me.
AI will read back these statistics in your identity, helping you determine which topics are popular and what to write next. Data-driven iteration on topics is much more efficient than writing blindly.
¶ 7. What Works on Juejin (Content Suggestions)
- Leverage "New": Juejin has a high acceptance of new models and tools. If you have something fresh in your reselling capabilities (new video models, new image models), creating "first-hand tests" is very appealing.
- Practical + Code: Provide runnable examples, allowing readers to try them out, turning them into your potential users—remember that the free quota entry in the code is your invitation link.
- Clean Formatting, Emphasize Originality: Juejin's community has high aesthetic standards; reposting and hard advertising will be neglected. Use genuine technical sharing to make an impact.
¶ 8. Automate It (Optional)
After successfully running manual publishing, combining it with "Scheduled Tasks for Automatic Publishing" can allow AI to publish on Juejin automatically—remember to add juejin to the allowed_skills whitelist of the scheduled tasks, or it will fail due to skill_not_active.
The readers of Juejin are a group of people who are "willing to take action," which is the high-quality traffic you want. Today, just grab a cookie, connect, and publish your first practical article—bring the early adopters to your service through the invitation link at the end of the article.
