无法在 Heroku 上部署 SparkJava 程序,出现权限不足错误

Can't deploy SparkJava program on Heroku , getting Insufficient privileges error

我有一个简单的 sparkJava 端点,我正在尝试将它部署到 Heroku 上,但出现以下错误。

部署应用程序失败:“spark-heroku-example”的权限不足statuscode:403 responseBody:{“id”:“forbidden”,“message”:“你没有访问应用程序 spark-heroku-example。”}

这是我的专家:

<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.haseeb</groupId>
  <artifactId>reactive-multi</artifactId>
  <version>1.0.0-SNAPSHOT</version>

  <dependencies>
    
    <dependency>
      <groupId>com.twilio.sdk</groupId>
      <artifactId>twilio</artifactId>
      <version>8.26.0</version>
    </dependency>

    <dependency>
      <groupId>com.sparkjava</groupId>
      <artifactId>spark-core</artifactId>
      <version>2.9.3</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <descriptorRefs>
            <!-- This tells Maven to include all dependencies -->
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
          <archive>
            <manifest>
              <mainClass>Main</mainClass>
            </manifest>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <groupId>com.heroku.sdk</groupId>
        <artifactId>heroku-maven-plugin</artifactId>
        <version>2.0.3</version>
        <configuration>
          <jdkVersion>1.8</jdkVersion>
          <appName>spark-heroku-example</appName>
          <processTypes>
            <!-- Tell Heroku how to launch your application -->
            <web>java -jar ./target/my-app-1.0-jar-with-dependencies.jar</web>
          </processTypes>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

您的 pom.xml 无关紧要。此错误与您尝试部署的代码无关。

You do not have access to the app spark-heroku-example.

您正在尝试部署到 Heroku 应用 spark-heroku-example。你拥有那个应用程序吗?它是你创建的,还是你被邀请参与其中的?可能不是。

我猜你在关注 this tutorial but missed or misread this step:

heroku create spark-heroku-example #choose your own application name

作者选择并注册了名称spark-heroku-example。你需要选择另一个名字(或者你可以让 Heroku 为你选择一个名字,只需 运行 heroku create 不带任何参数)。

确保在作者在教程中使用 spark-heroku-example 的任何地方都使用 您的 应用程序的名称。