Skip to content

Commit f80c067

Browse files
authored
Update README.md
1 parent a841821 commit f80c067

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ For more information see [BITLY DEV DOCS](https://dev.bitly.com/)
1111
## Requirements
1212

1313
Laravel 5.1 or Later
14+
1415
PHP 7.1 or Later
16+
1517
Bitly [Access Token](https://app.bitly.com/settings/api/ "Access Token")
1618

1719
## Installation
@@ -103,13 +105,15 @@ This Bitly package allow you to use advance bitlink attributes to customize bitl
103105
> Note: While using attribues you will have to provide `->url()` and `->get()` to retrive short url!
104106
105107
**URL**
108+
106109
You will have to provide long URL to this function which will be used to shorten the url.
107110

108111
```php
109112
$url = Bitly::url('http://example.com')->get(); // http://bit.ly/nHcn3
110113
```
111114

112115
**TITLE**
116+
113117
Its a short description that appears in the Bitly UI.
114118
You can now set the title of the URL which you are shortning by passing title in title function
115119

@@ -120,6 +124,7 @@ $url = Bitly::url('http://example.com')
120124
```
121125

122126
**PROXY**
127+
123128
Proxies can be now passed using proxy function which can be used to build bulk urls with proxies.
124129

125130
> Note: You can provide proxy URLs that contain a scheme, username, and password. For example, "http://username:password@192.168.16.1:10".
@@ -131,6 +136,7 @@ $url = Bitly::url('http://example.com')
131136
```
132137

133138
**DOMAIN**
139+
134140
Customizing the domain requires that you have a custom domain attached to your Bitly account. The default value is bit.ly.
135141
To brand your short links use domain attribute. Premium Bitly customers can set custom domain added in dashboard with `->domain()` . This is only for Premium Bitly Customers
136142

@@ -141,6 +147,7 @@ $url = Bitly::url('http://example.com')
141147
```
142148

143149
**TAGS**
150+
144151
Set multiple tags with tags attributes. Tags must be provided in array.
145152

146153
```php
@@ -152,6 +159,7 @@ $url = Bitly::url('http://example.com')
152159
```
153160

154161
**GUID**
162+
155163
guid can be used to set your group id. GUID Identifies a group of users in your account. Every user will belong to at least one group within an organization. Most actions on our API will be on behalf of a group. Always verify your default group in Bitly and specify a group in the call with `->guid()` attribute.
156164

157165
```php

0 commit comments

Comments
 (0)