- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试构建一个 Linkedin API 代码,但我发现了一个奇怪的错误
Fatal error: Uncaught TypeError: Argument 1 passed to Dotenv\Dotenv::__construct() must be an instance of Dotenv\Loader, string given, called in E:\xampp\htdocs\linkedinpi\examples\index.php on line 16 and defined in E:\xampp\htdocs\linkedinpi\vendor\vlucas\phpdotenv\src\Dotenv.php:31 Stack trace: #0 E:\xampp\htdocs\linkedinpi\examples\index.php(16): Dotenv\Dotenv->__construct('E:\\xampp\\htdocs...') #1 {main} thrown in E:\xampp\htdocs\linkedinpi\vendor\vlucas\phpdotenv\src\Dotenv.php on line 31
我无法复制解决问题的方法。
我已经按照以下步骤
https://github.com/zoonman/linkedin-api-php-client和 https://github.com/zoonman/linkedin-api-php-client/tree/master/examples
我已经通过 Composer 下载了 Vendor,这是我使用的代码
include_once dirname(__DIR__) . DIRECTORY_SEPARATOR . 'vendor/autoload.php';
use LinkedIn\Client;
use LinkedIn\Scope;
$dotenv = new Dotenv\Dotenv(dirname(__DIR__));
$dotenv->load();
session_start();
$client = new Client(
getenv('[LINKEDIN CLIENT ID]'),
getenv('[LINKEDIN CLIENT SECRET]')
);
if (isset($_GET['code'])) { // we are returning back from LinkedIn with the code
if (isset($_GET['state']) && // and state parameter in place
isset($_SESSION['state']) && // and we have have stored state
$_GET['state'] === $_SESSION['state'] // and it is our request
) {
try {
// you have to set initially used redirect url to be able
// to retrieve access token
$client->setRedirectUrl($_SESSION['redirect_url']);
// retrieve access token using code provided by LinkedIn
$accessToken = $client->getAccessToken($_GET['code']);
h1('Access token');
pp($accessToken); // print the access token content
h1('Profile');
// perform api call to get profile information
$profile = $client->get(
'people/~:(id,email-address,first-name,last-name)'
);
pp($profile); // print profile information
$share = $client->post(
'people/~/shares',
[
'comment' => 'Checkout this amazing PHP SDK for LinkedIn!',
'content' => [
'title' => 'PHP Client for LinkedIn API',
'description' => 'OAuth 2 flow, composer Package',
'submitted-url' => 'https://github.com/zoonman/linkedin-api-php-client',
'submitted-image-url' => 'https://github.com/fluidicon.png',
],
'visibility' => [
'code' => 'anyone'
]
]
);
pp($share);
$companyId = '2414183';
h1('Company information');
$companyInfo = $client->get('companies/' . $companyId . ':(id,name,num-followers,description)');
pp($companyInfo);
h1('Sharing on company page');
$companyShare = $client->post(
'companies/' . $companyId . '/shares',
[
'comment' =>
sprintf(
'%s %s just tried this amazing PHP SDK for LinkedIn!',
$profile['firstName'],
$profile['lastName']
),
'content' => [
'title' => 'PHP Client for LinkedIn API',
'description' => 'OAuth 2 flow, composer Package',
'submitted-url' => 'https://github.com/zoonman/linkedin-api-php-client',
'submitted-image-url' => 'https://github.com/fluidicon.png',
],
'visibility' => [
'code' => 'anyone'
]
]
);
pp($companyShare);
$filename = './demo.jpg';
$client->setApiRoot('https://api.linkedin.com/');
$mp = $client->upload($filename);
*/
} catch (\LinkedIn\Exception $exception) {
// in case of failure, provide with details
pp($exception);
pp($_SESSION);
}
echo '<a href="/">Start over</a>';
} else {
echo 'Invalid state!';
pp($_GET);
pp($_SESSION);
echo '<a href="/">Start over</a>';
}
} elseif (isset($_GET['error'])) {
pp($_GET);
echo '<a href="/">Start over</a>';
} else {
// define desired list of scopes
$scopes = [
Scope::READ_BASIC_PROFILE,
Scope::READ_EMAIL_ADDRESS,
Scope::MANAGE_COMPANY,
Scope::SHARING,
];
$loginUrl = $client->getLoginUrl($scopes);
$_SESSION['state'] = $client->getState();
$_SESSION['redirect_url'] = $client->getRedirectUrl();
echo 'LoginUrl: <a href="'.$loginUrl.'">' . $loginUrl. '</a>';
}
function pp($anything)
{
echo '<pre>' . print_r($anything, true) . '</pre>';
}
function h1($h) {
echo '<h1>' . $h . '</h1>';
}
最佳答案
调用 Dotenv 类的更改自定义环境 --> 用于运行多个环境
包的 Git 链接:Git link for the package
$dotenv = Dotenv\Dotenv::create(dirname(__DIR__), 'custom env');
$dotenv->load();
当我从 laravel 5.8 迁移到拉维尔 6
注意请添加帮助包,因为支持已从核心中移除laravel 6 中的文件
关于php - Dotenv\Dotenv::__construct() 不是 Dotenv\Loader 的实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57307238/
我正在使用 webpack 开始我的学习之路,但遇到了一个问题,我认为这是由 extract-loader 引起的。 .当webpack抓取我的HTML文件时,似乎无法正常编译,在使用import.m
我正在使用 tomcat 8,在 tomcat-home/config/catalina.properties ,有关于的部分 common.loader, server.loader and sha
在使用 import 语句时,我对区分 sass-loader 和 css-loader 有点困惑。据我所知,css loader resolve import statment(@import) 和
我的 webpack 加载器数组中有这个加载器: { test: /\.scss$/, exclude: /node_modules/, loaders: ExtractTextPlugin('sty
我对 url-loader 、 file-loader 和 image-loader 感到很困惑。谁能解释一下 url-loader 、 file-loader 和 image-loader 的区别是
我有 page.css @imports index.css。 page.css 和 index.css 都有 display: flex Webpack.config.js 包含: module:
我在 webpack 中使用生产模式构建的多入口点最终 bundle 中导出的多入口编译 js 文件始终包含加载器内容。如何消除它们以及为什么包含它们? 重现 git clone https://gi
模板加载器找到模板但未加载模板 TemplateDoesNotExist at /cardpayment/ cardpayment.html Request Method: GET Reque
当我尝试运行 gradle tR (tomcatRun) 时出现此错误 A child container failed during start java.util.concurrent.Execu
Failed to start component [StandardEngine[Tomcat].StandardHost[localhost].StandardContext[/projectna
我计划将 Webpack 用于一个项目,并且我正在使用 Html-loader + file-loader 设置我的工作流程,以获取带有图像动态 src 的生产 html 文件,正如 Colt Ste
我有一个巨大的 csv 文件,其中包含数百万条记录,我想使用 python 脚本将它加载到 Netezza 数据库中。我尝试了简单的插入查询,但速度非常非常慢。可以指出一些示例 python 脚本或一
我想将 ts-loader 与 babel-polyfill 一起使用,但不使用 babel-loader。但是当我尝试构建该项目时,我收到了此错误。谁能告诉我我缺少什么。 ERROR in ./sr
下面是我的 webpack.config.js 和 package.json module.exports = { entry: "./entry.js", output: { fi
我在两台不同的 PC 上遇到了一个问题。对于我的项目,我为开发安装了以下依赖项:(webpack webpack-cli @babel/core @babel/preset-env @babel/pr
模板文件保存在app目录下,但渲染时引发TemplateDoesNotExist异常: 模板加载器事后分析如下: Django 尝试按以下顺序加载这些模板: Using loader django.t
PHPUnit 手册说: If you point the PHPUnit command-line test runner to a directory it will look for *Test
我正在开发一个需要 html 的角度应用程序要提取为纯 HTML 文件的文件,同时应检查任何 要求这些图像(作为 Assets )。另外,图片是基于根路径的(所以 /images/something.
我们在 sql 加载器中遇到了问题。我们正在尝试将一个大约 46 亿行(近 340 GB)的数据文件加载到 2 个 oracle 表中,基于一些使用 Sql Loader 的条件。但是在加载了 42
我将 CSS 模块与 webpack css-loader 一起使用,然后将它们与 mini-css-extract-plugin 捆绑在一起。 这是我的配置的样子: { test: /\.c
我是一名优秀的程序员,十分优秀!