- 博客(20)
- 收藏
- 关注
原创 AMAZON 注册开发者
注册IMA 文档https://github.com/amzn/selling-partner-api-docs/blob/main/guides/en-US/developer-guide/SellingPartnerApiDeveloperGuide.md#step-1-create-an-aws-account登录IMA添加用户复制保存aws_keyaws_secret添加策略添加角色 绑定策略编辑用户添加权限绑定策略添加内联策略复制保存aws_keyaws_secret
2022-02-14 16:16:40 903
原创 AMAZON SP API Feed
参考资料feedType : https://github.com/amzn/selling-partner-api-docs/blob/main/references/feeds-api/feedtype-values.md使用方法:https://github.com/amzn/selling-partner-api-docs/blob/main/references/feeds-api/feeds_2020-09-04.md例:修改Price1. 先创建 feedDocument$param
2022-02-12 11:06:39 2087 12
原创 AMAZON API PHP开发指南
参考资料:市场IDMarketplace IDs : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids端点地址:https://developer-docs.amazon.com/sp-api/docs/sp-api-endpoints开发者资料:https://developer-docs.amazon.com/sp-api/docs/registering-as-a-developer1、授权$oauthUri = 端点
2022-02-11 17:41:27 1141
原创 EBAY API PHP开发指南
1、获取access_token参考文档:https://developer.ebay.com/api-docs/static/oauth-authorization-code-grant.html1.1 授权$scope = array( 'https://api.ebay.com/oauth/api_scope', 'https://api.ebay.com/oauth/api_scope/sell.account',);// @scope:作用域,参考文档:https://
2022-02-11 15:10:30 744 1
原创 样式冲突问题
<script type="text/javascript"> $.fn.modal.Constructor.prototype.enforceFocus = function() {};</script>
2021-12-28 10:59:04 333
原创 PHP 下载txt
filename="test.txt";header("Content−Type:application/force−download");header("Content−Disposition:attachment;filename=".basename(filename = "test.txt";header("Content-Type: application/force-download");header("Content-Disposition: attachment; filename="
2021-12-08 11:30:22 315
原创 解决微信接口下载图片报错invalid media_id
用微信接口下载图片总报错invalid media_id我用微信的js-sdk接口的wx.chooseImage选择图片,用wx.uploadImage上传图片,再用http://file.api.weixin.qq.com/cgi-bin/media/get?access_token=ACCESS_TOKEN&media_id=MEDIA_ID上传下载多媒体文件接口下载图片到本地服务器,可总是报错{“errcode”:40007,“errmsg”:“invalid media_id”}无效媒体I
2021-12-04 15:38:51 1648
原创 安装wamp遇到的坑
提示缺MSVCR110.dll下载这个:Visual C++ Redistributable for Visual Studio 2012 Update 4提示缺MSVCR120.dll下载这个:Visual C++ Redistributable Packages for Visual Studio 2013千万不要相信下载单个文件,放到文件夹里的操作!!!!!...
2020-10-16 14:56:33 151
原创 PHP RSA使用记录 (微信转账支付接口)
//PASK#1 转 PASK#8格式 公钥 $public_key = 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A' . $public_key; //组装公钥 $public_key = "-----BEGIN PUBLIC KEY-----\n" . wordwrap(trim($public_key), 64, "\n", true) . "\n-----END PUBLIC KEY-----\n"; //RSA编码(需要编码的数据,编码结果,公钥,编码类
2020-07-04 15:20:31 1030
原创 PHP 跨域问题
originwhitelist=array(′来源域名′,);if(isset(origin_whitelist = array( '来源域名',);if (isset(originwhitelist=array(′来源域名′,);if(isset(_SERVER[‘HTTP_ORIGIN’]) && in_array($_SERVER[‘HTTP_ORIGIN’], $origin_whitelist)){header('Access-Control-Allow-Origin:
2020-07-04 14:57:57 151
原创 PHP MAILS SMTP 使用记录
$smtp = fsockopen($this->smtp, $this->smtp_proxy);// 握手$this->execute("EHLO " . $_SERVER['SERVER_NAME']);// 登录验证//如果是starttls协议则需要开启tls加密 $this->execute("STARTTLS"); stream_socket_enable_crypto($stream, true, STREAM_CRYPTO_METHOD_TLS_C
2020-05-27 17:17:14 308
原创 PHP MAILS IMAP 使用记录
$stream = imap_open('{imap.qq.com:993/imap/ssl}' . imap_utf8_to_mutf7('INBOX'), $username, $password);//获取所有的邮箱文件夹:收件箱、发件箱等$result = imap_list($stream, '{imap.example.org}', '*');foreach ($result as $name){ $folder []= imap_mutf7_to_utf8(str_replace(
2020-05-27 15:53:40 291
原创 PHPExcel XLS XLSX记录
$phpexcel = new PHPExcel();//(索引页)$phpexcel->setActiveSheetIndex(0);//索引标题$phpexcel->getActiveSheet()->setTitle('表');//合并单元格$phpexcel->getActiveSheet()->mergeCells('A1:H1');//水平居中$phpexcel->getActiveSheet()->getStyle('A1')-
2020-05-27 10:56:23 293
原创 GuzzleHttp\Client HTTPS请求记录
//设置请求头$headers = array( 'Accept' => 'application/json', 'Accept-Charset' => 'utf-8');//请求设置$config = array( //请求链接 'base_uri' => ’url‘ //请求头 'headers' => $headers, //请求内容 (’body‘,'json', 'query', 'form_params') //query url拼接 ,
2020-05-23 18:05:34 7475 1
原创 OSS文件上传记录
$options = array(// 设置文件头OSS\OssClient::OSS_HEADERS => array(‘Content-Type’ => ‘text/html; charset=utf-8’));$object = ‘1.html’;$oss = new OSS\OssClient(’aliyun_access_key_id‘, ’aliyun_access_key_secret‘, ’oss_endpoint‘);//以文件内容上传文件//oss_buck
2020-05-23 17:57:22 452
原创 TCPDF使用记录
//(纵横向P/L,度量单位cm/mm,页面大小array(x,y),Unicode,编码))$pdf = new TCPDF(‘P’, PDF_UNIT, ‘A4’, true, ‘UTF-8’);//设置创建者$pdf->SetCreator(PDF_CREATOR);//设置默认等宽字体$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);//整体内容外边距$pdf->SetMargins(10, 10, 10);//
2020-05-23 17:45:31 1243
原创 Github、packagist发布
一、注册Github账号,创建仓库1.注册2.新建仓3.创建之后(这两部分有用)二、下载安装GIT版本管理工具1.Git:https://git-scm.com/2.打开终端,进入需要绑定的文件夹①、git init②、git add .//.代表所有文件③、git config --global user.email “*****.com”④、git config --global user.name “Morton1117”⑤、git commit -m “注释”⑥、g
2020-05-23 17:17:46 361
原创 fiddler抓包 手机添加代理后无法访问网页
(1)打开注册表,在HKEY_CURRENT_USER\SOFTWARE\Microsoft\Fiddler2下创建一个DWORD,值设置为80(十进制)(2)在Fiddler中,点击Rules > Customize Rules,用ctr+f查找到OnBeforeRequest方法添加一行代码if (oSession.host.toLowerCase() == “webserver:8888”){oSession.host = “webserver:80”;}(3)如果只能访问http,
2020-05-23 17:14:13 1823
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人