Code Monkey home page Code Monkey logo

pulsar-game's Introduction

Hi there 👋

我是 labuladong,拥抱开源,创造价值,致力于把复杂的问题讲清楚。

欢迎学习我的算法教程:

https://labuladong.online/algo/

pulsar-game's People

Contributors

labuladong avatar yaalsn avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

pulsar-game's Issues

client.CreateProducer 创建Producer失败

main.go函数如下:

const privateKeyPath = "o-akmwo-zane.json"
const pulsarUrl = "pulsar+ssl://cluster-zane.o-akmwo.snio.cloud:6651"

func main() {
	ebiten.SetWindowSize(screenWidth, screenHeight)
	ebiten.SetWindowTitle("Bomb man")
        ......
}

集群配置如下:
image

oauthConfig参数根据自己的集群做了一定的调整,如下图:
image

修改后的代码如下,仅调整了oauthConfig部分,认证部分是可以通过的:

func newPulsarClient(topicName, subscriptionName, keyPath string) *pulsarClient {
	oauthConfig := map[string]string{
		"type":       "client_credentials",
		"issuerUrl":  "https://auth.streamnative.cloud/",
		"audience":   "urn:sn:pulsar:o-akmwo:gcloud-zane",
		"privateKey": keyPath,
		"clientId":   "ACy6fIueFvVSpaqSEJUL8IMkuwcrHMFf",
	}
	oauth := pulsar.NewAuthenticationOAuth2(oauthConfig)
	client, err := pulsar.NewClient(pulsar.ClientOptions{
		URL:            pulsarUrl,
		Authentication: oauth,
	})
	if err != nil {
		log.Fatal(err)
	}

	// player event topicName
	producer, err := client.CreateProducer(pulsar.ProducerOptions{
		Topic:           topicName,
		DisableBatching: true,
	})
	if err != nil {
		log.Fatalf("client.CreateProducer err: %s", err)
	}

运行结果如下:
image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.