Git Product home page Git Product logo

laravel-ga4-event-tracking's Introduction

Hi there ๐Ÿ‘‹

I'm am a full stack developer mostly in the PHP world and love building apps in Laravel. I currently work as senior developer at a large promotional product company.

laravel-ga4-event-tracking's People

Contributors

daikazu avatar

Stargazers

 avatar  avatar

Watchers

 avatar

laravel-ga4-event-tracking's Issues

Missing user_id in SendEvent

src/GA4.php
Forgetting to make use of the userId set on line 47...

public function sendEvent(array $eventData): array
    {
        if (! $this->clientId && ! $this->clientId = session(config('ga4-event-tracking.client_id_session_key'))) {
            throw new MissingClientIdException;
        }

        $this->validateEvent($eventData);

        $response = Http::withOptions([
            'query' => [
                'measurement_id' => config('ga4-event-tracking.measurement_id'),
                'api_secret' => config('ga4-event-tracking.api_secret'),
            ],
        ])->post($this->getRequestUrl(), [
            'client_id' => $this->clientId,
            'events' => [$eventData],
        ]);

        if ($this->debugging) {
            return $response->json();
        }

        return [
            'status' => $response->successful(),
        ];
    }

Line 78 should get updated to...

        ])->post($this->getRequestUrl(), [
            'client_id' => $this->clientId,
            'user_id' => $this->userId,
            'events' => [$eventData],
        ]);

Lemme know if you need a PR or can just fix it yerself...

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.