gpt4 book ai didi

python - 使用python从netsuite获取和推送数据

转载 作者:太空宇宙 更新时间:2023-11-04 04:59:01 24 4
gpt4 key购买 nike

我有一个任务,我必须同时使用 python 脚本和 wsdl 在 netsuite 中获取数据和推送数据。

任何形式的示例脚本或学习链接形式的帮助都会有所帮助。

提前致谢

最佳答案

您可以为此目的使用 reSTLet。创建后,您可以使用 python 访问它。这是我从 netsuite 帮助中找到的示例代码。

import oauth2 as oauth
import requests
import time

url = "https://rest.netsuite.com/app/site/hosting/restlet.nl?script=992&deploy=1"
token = oauth.Token(key="080eefeb395df81902e18305540a97b5b3524b251772adf769f06e6f0d9dfde5", secret="451f28d17127a3dd427898c6b75546d30b5bd8c8d7e73e23028c497221196ae2")
consumer = oauth.Consumer(key="504ee7703e1871f22180441563ad9f01f3f18d67ecda580b0fae764ed7c4fd38", secret="b36d202caf62f889fbd8c306e633a5a1105c3767ba8fc15f2c8246c5f11e500c")

http_method = "GET"
realm="ACCT123456"

params = {
'oauth_version': "1.0",
'oauth_nonce': oauth.generate_nonce(),
'oauth_timestamp': str(int(time.time())),
'oauth_token': token.key,
'oauth_consumer_key': consumer.key
}

req = oauth.Request(method=http_method, url=url, parameters=params)
signature_method = oauth.SignatureMethod_HMAC_SHA1()
req.sign_request(signature_method, consumer, token)
header = req.to_header(realm)
headery = header['Authorization'].encode('ascii', 'ignore')
headerx = {"Authorization": headery, "Content-Type":"application/json"}
print(headerx)
conn = requests.get("https://rest.netsuite.com/app/site/hosting/restlet.nl?script=992&deploy=1",headers=headerx)
print(conn.text)

关于python - 使用python从netsuite获取和推送数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46314111/

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