gpt4 book ai didi

php - 发送到 Firebase 数据库的 Wordpress/Woocommerce 数据

转载 作者:行者123 更新时间:2023-12-04 10:22:28 25 4
gpt4 key购买 nike

我们有一个基于 Firebase 构建的应用,我们的客户通过我们的网站购买了我们应用的订阅。

理想情况下,我们希望在下订单后发送以下信息:

ID - primary key. This is generated using the order number from WooCommerce
card_number - string. This is the order number prefixed with #VIP (e.g #VIP12345). This is needed because of a legacy setup when we first launched. Hopefully it'll be phased out soon.
forename - string
surname - string
user_id - always an empty string. This is completed when the user first signs in.
email - string
expiry - int. The cards expiry date formatted as an epoch
business_reward_admin - always the string 'FALSE'
business_reward_user - always the string 'FALSE'
business_reward_id - always an empty string

有没有人对这种类型的集成有任何过期?

我们目前不需要 2 路同步,但是一旦我们解决了这个问题,我们会在稍后进行。

基本上只需要 order_id、first_name、last_name、email 和 order_date + 365 天的到期时间 - 在订单完成/感谢页面时发送到数据库。

谢谢,凯尔

编辑:

我想做这样的事情——但以前没有写过 CURL——如果完全错误,请道歉。
<?php

add_action('woocommerce_payment_complete', 'bnd_firebase_realtime_put', 10, 1);

function bnd_firebase_realtime_put ($order_id) {

$order = new WC_Order( $order_id );

// Loop through cart items
foreach( $order->get_items() as $item ){
// Get the Product ID
$order_id = trim( str_replace( '#', '', $order->get_id() ) );
// Get Users First Name
$firstname = $order->get_billing_first_name();
// Get Users Last Name
$lastname = $order->get_billing_last_name();
// Get Users Email Address
$email = $order->billing_email;
//Epoch Time + 365 days in Epoch time
$expiry = time() + 31556926;
//Get Product ID Number
$product_id = $item->get_product_id();
//Get Firebase Project ID number from Product Meta
$project_id = get_post_meta($product_id,'project_id', true);
//Get Firebase Access Token from Product Meta
$access_token = get_post_meta($product_id,'access_token', true);


curl -X PUT -d '{ "ID" : "'. $order_id . '", "card_number" : "#VIP'. $order_id . '" , "forename" : "' . $firstname .'" , "lastname" : "'. $lastname .'" , "email" : "' . $email . '" , "expiry" : "' . $expiry .'" }' \ 'https://'. $project_id .'.firebaseio.com/users.json?access_token=' . $access_token .'
}
}

?>

最佳答案

您可以使用 Woocommerce webhooks为了调用HTTPS Cloud Function .

您可以编写云函数,使其接收 POST HTTP 请求,并在请求的正文中传递所需的数据。

然后,在 Cloud Function 中,您使用 Admin SDK 来写入所需的 Firebase 数据库(Cloud FirestoreRealtime Database)。

以下几行应该可以解决问题(未经测试):

const functions = require('firebase-functions');
const admin = require('firebase-admin');

exports.wooWebhook = functions.https.onRequest((req, res) => {

if (req.method !== 'POST') {
console.error('Request method not allowed.');
res.status(405).send('Method Not Allowed');
} else {

const wooData = req.body.data;

return admin.firestore().collection('wooOrders').add(wooData)
.then(docRef => {
res.status(200).send({result: 'ok'});
})
.catch(err => {
res.status(500).send({error: err});
});
}

});

有关如何开始使用 Cloud Functions 的更多详细信息,请访问 https://firebase.google.com/docs/functions/get-started也可以通过观看 https://firebase.google.com/docs/functions/video-series 上的视频系列(强烈推荐)。

关于php - 发送到 Firebase 数据库的 Wordpress/Woocommerce 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60789334/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com