4-g/4-g-specs-sdk

1.3.0 2024-03-18 17:43 UTC

This package is auto-updated.

Last update: 2024-10-18 19:02:44 UTC


README

Introduction

The Verizon Edge Discovery Service API can direct your application clients to connect to the optimal service endpoints for your Multi-access Edge Computing (MEC) applications for every session. The Edge Discovery Service takes into account the current location of a device, its IP anchor location, current network traffic and other factors to determine which 5G Edge platform a device should connect to.

Verizon Terms of Service: https://www.verizon.com/business/5g-edge-portal/legal.html

Install the Package

Run the following command to install the package and automatically add the dependency to your composer.json file:

composer require "4-g/4-g-specs-sdk:1.3.0"

Or add it to the composer.json file manually as given below:

"require": {
    "4-g/4-g-specs-sdk": "1.3.0"
}

You can also view the package at: https://packagist.org/packages/4-g/4-g-specs-sdk#1.3.0

Initialize the API Client

Note: Documentation for the client can be found here.

The following parameters are configurable for the API Client:

The API client can be initialized as follows:

$client = VerizonClientBuilder::init()
    ->oauth2Credentials(
        OAuth2CredentialsBuilder::init(
            'OAuthClientId',
            'OAuthClientSecret'
        )
            ->oauthScopes(
                [
                    OauthScopeOauth2Enum::DISCOVERYREAD,
                    OauthScopeOauth2Enum::SERVICEPROFILEREAD
                ]
            )
    )
    ->thingspaceOauthCredentials(
        ThingspaceOauthCredentialsBuilder::init(
            'OAuthClientId',
            'OAuthClientSecret'
        )
    )
    ->vZM2mToken('VZ-M2M-Token')
    ->environment('Production')
    ->build();

API calls return an ApiResponse object that includes the following fields:

Authorization

This API uses the following authentication schemes.

List of APIs

Classes Documentation