Victor Lyuboslavsky
Victor Lyuboslavsky
Also, please put the video at the bottom of the article. From my experience, if the video is at the top, Google does not index the page.
@lukeheath We should prioritize this issue. I just found 2 bugs that would've been caught by this: #23050 I recommend using Render blueprints. Minimum cost is $7 (web server) +...
@lukeheath Yes, I can access it, but I'd like to use repository mirroring and automatically start the pipeline on mirror updates. These are premium GitLab features.
- We will want the proxy to know whether Fleet server is premium. Perhaps the server can send the license key? - Why? If app inventory is a premium feature,...
> I also remove specs about the JWT for PubSub. After chatting with [@marko-lisica](https://github.com/marko-lisica), my understanding is that fleetdm.com won't need this JWT. The Fleet server will hit PubSub directly....
@noahtalerman The create enterprise request should contain all the query and body parameters of the Google request: https://developers.google.com/android/management/reference/rest/v1/enterprises/create The following fields are in addition to that: - `fleet_license_key` - `pubsub_push_url`...
> > fleetdm.com will look at the request headers to get the Fleet server's [origin URL](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin) and check if the Fleet server already exists in a new Android Enterprise mapping...
@eashaw I have some of these answers in the [sequence diagrams](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/MDM-Android.md#architecture-diagrams). Also, there is the [built-in proxy code](https://github.com/fleetdm/fleet/blob/main/server/mdm/android/service/proxy/proxy.go) that you can reference. Do we have a dedicated endpoint for the...
@eashaw Here's a "Create Android enterprise" request (going directly to Google right now): ``` POST /androidmanagement/v1/enterprises?alt=json&enterpriseToken=XXXXXXXX&prettyPrint=false&projectId=android-api-448119&signupUrlName=signupUrls%2FC1f460dfbbb14c116 HTTP/2 Content-Length: 172 X-Cloud-Trace-Context: XXXXXXXX X-Forwarded-For: XXXXXXXX User-Agent: google-api-go-client/0.5 Accept-Encoding: gzip Authorization: Bearer XXXXXXXX...
@eashaw @noahtalerman Can we make all the endpoints behave/look the same as the Google API besides the "Create Android enterprise"? This will make it easier for dev to switch between...