ð Frequently Asked Questions (FAQ)
Optimization Suggestions for Problem Submissionâ
If you encounter any issues or have suggestions, please go to the CloudBase Community to submit an issue
ðĒ Platform-Related Questionsâ
The Connection Between WeDa and CloudBaseâ
WeDa is a feature module of CloudBase.

Cannot Find the [Approval Workflow] Entry in Cloud Development Platformâ
Approval Workflow is currently only available to existing customers and Enterprise Edition and higher-tier plans.
Cannot See the Git Entry in Cloud Development Platformâ
Please refer to the Git Mode Documentation for details.
Support for Authenticating Multiple Mini Programs in Cloud Development Platformâ
Supported. Please refer to Authenticating Mini Programs to Cloud Development Platform.
Custom SMS Signature for Cloud Development Platformâ
Please refer to the Custom SMS Signature Documentation for details.
Binding a Custom Domain Name in Cloud Development Platformâ
Please refer to the documentation Configuring Custom Domain Names for setup. The same application supports binding multiple domain names.
Support for Domain Names from Other Providers in Custom Domainâ
Supported. You need to apply for an SSL certificate on the Tencent Cloud platform first: Go to Apply
Custom Domain ssl Certificate Expirationâ
Custom domain ssl certificate expires and needs to be manually replaced.
404 Error Accessing Cloud Consoleâ

Check if the __auth folder in Static Hosting has been deleted
ðą Application-Related Questionsâ
Failed to Submit Mini Program for Review_ Unconfigured Privacy Interface getLocation in ext.jsonâ
"Failed to submit for review_The code contains unconfigured privacy interface getLocation in ext.json. Please configure and apply for permissions or commit to not using these interfaces (set parameter privacy_api_not_use to true) before resubmitting." Please refer to Location Component Configuration Guide to configure the Mini Program's app.json file.
Release Version Number Issues for Mini Programâ
Mini Program official release allows customizing the app version number.
Mini Program Submission for Review Rejectedâ
Check the review submission failure reasons in the app release version and take corresponding actions based on the rejection reasons.
Insufficient Release Quota Prompt for Application Publishingâ
can be resolved in the following ways:
- Upgrade Plan
- Delete previously published applications
How to Hide the Top Cloud Console Navigation Bar When Publishing an H5 Applicationâ

When publishing the application, select "No" for releasing to the cloud console.
Data Not Displayed After Application Publishedâ
Since super administrator permissions are generally used in the editor, if data is not displayed after the application is published, please prioritize checking the basic permissions of the data model.

Please verify whether the correct data types are used in the application. Currently, WeDa provides data models that distinguish between production and trial data (Supported in Standard Edition and above).

Images Not Displayed After Application Publishedâ
Please follow the steps below to troubleshoot:
ð First, check whether cloud storage permissions are granted

ð If cloud storage permission settings are correct, please refer to the Image Component Documentation FAQ
How to Resolve H5 Application Access URL Being Blocked by WeChatâ

Being blocked by WeChat can be resolved as follows:
- Use Custom Domain Names
- Request recovery
Access prompt "error": "permission_denied"â
{
"error": "permission_denied",
"error_code": 7,
"error_description": "cors permission denied, please check if xx.xxx.xx in your client xxxxx-xxxxx domains"
}
Secure domain configuration needs to be added for the ip. In Environment Configuration - Secure Domain Configuration, the domain name must be included.
This configuration is cached and is expected to take effect approximately 10 minutes after configuration

ð ïļ Data Model Related Issuesâ
Data model created successfully, but lacks the switch option for "trial/production data"â
Currently, trial data is only supported for Cloud Development Standard Edition or higher packages.

Data loading is slowâ
Can be troubleshot and resolved in the following ways:
First, check the log panel for slow queries. If any exist, add index fields as prompted.

Upgrade your plan edition to increase QPS
Does the MySql data model support transactions?â
Currently, transactions are not supported.
How to achieve a single query exceeding 200 data recordsâ
Using the Database Query Collection method, a single query supports up to 1000 data records.
Is there a size limit for single data storageâ
There is no upper limit for array or object types, but the upper limit for a single document is 16MB. Considering the excessive network I/O and serialization costs, it is not recommended to add data indefinitely in arrays.
ð ïļ Development-Related Questionsâ
How to enable debug modeâ
Please refer to the Application Debugging Documentation for details.
Calling the system common option set APIs returns a 401 error.â
Check the access key configured for the APIs.
Component Features Abnormal After Application Publishedâ
Please provide the following information to facilitate troubleshooting.
- Briefly describe the symptom of the component issue
- Provide a preview link
- For issues caused by component defects, after the component is fixed, guide the user to upgrade the component -> republish the application
Module Feature Abnormal Errorâ
Please provide the complete error information (copy directly from the error message).
Workflow Execution Concurrency Limitâ
There is a call volume limit of 2000 times per hour.
Under What Circumstances Does Event Execution Enter the Failure Branch in the Editorâ
The following conditions will trigger the failure branch:
- ð Abnormal network status
- â ïļ Internal service error
- ðŧ Custom code actively throws an exception:
throw new Error("An error occurred")
ðą Mini Program Related Questionsâ
Mini Program Backend Version Management Disabledâ
The Mini Program has been bound to the Cloud Development Platform via QR code authorization, and the Mini Program backend has third-party binding with WeDa Low-Code.
QR Code Authorization Failed: "Mini Program and Tencent Cloud Account Binding Inconsistent or Cloud Development Not Activated"â
Possible causes and solutions:
It is prompted that the Mini Program and Tencent Cloud account binding are inconsistent. Please go to the Tencent Cloud Account Center to check the account association relationship.

If prompted that Cloud Development is not activated, please refer to Step 2 in the document Enable Cloud Development to activate Cloud Development
If the Mini Program was registered or WeChat-verified on the same day, there might be a delay in WeChat returning the program information. It is recommended to perform QR code authorization binding at a later time.
Mini Program Access Error: [Resource Reuse] - Authorization Not Obtained for This Environmentâ

Follow the prompts to perform environment sharing operations. For specific steps, refer to the Environment Sharing Operation Guide.

How to Implement Navigation from One Mini Program to Anotherâ
There are two ways to achieve this:
Using the Mini Program native API: wx.navigateToMiniProgram

Using the WeDa API
How to Access WeChat Payâ
Please refer to the WeChat Pay Integration Process
Mini Program Download File Error: downloadFile:fail url not in domain listâ
Please refer to the downloadFile Domain Configuration Guide to configure the Mini Program download domain.
How to Enable Sharing on Mini Program Pages (Visual Development Approach)â

You can navigate to the page configuration and turn on the forwarding switch.

Why does the Mini Program backend report that the path does not exist when I enter the path copied from WeDa to generate the Mini Program code?â
You need to append .html after the page path copied from WeDa

What is the difference between Mini Program subscription messages and WeChat Official Account subscription messages? Can they share the same openid?â
Refer to the following flowchart:

After calling the logout method in the Mini Program, page access becomes abnormal.â
Define the JavaScript method from the following example in the editor, and call this method in the event that triggers exit:
export default async function ({ event, data }) {
// Set logout status
$w.page.dataset.state.isToLogOut = true;
// Perform logout
await $w.auth?.signOut?.();
// Determine the platform type and perform corresponding operations
$w.wedaContext.platforms.includes("MP")
? // Mini Program: Restart and redirect to the specified page
wx.restartMiniProgram({
path: path: "Replace your own page path", // Please replace with the actual page path
})
: // Web: Refresh the page after a delay and automatically redirect to the default login page
setTimeout(() => {
window.location.reload();
}, 1000);
}
- Please replace
"your_own_page_path"with the actual page path you need to redirect to - On the Mini Program side, use
wx.restartMiniProgram()to restart the Mini Program - On the Web side, use
window.location.reload()to refresh the page
Can one apply for their own software copyright after developing a mini program using WeDa's software-based standard edition and launching it?â
WeDa is merely a development tool. The copyright of a mini program belongs to its developer, who can apply for the software copyright of the mini program.