You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25-1Lines changed: 25 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,7 @@ Each service from the steam api has it's own methods you can use.
56
56
-[User](#user)
57
57
-[User Stats](#user-stats)
58
58
-[App](#app)
59
+
-[Package](#package)
59
60
-[Group](#group)
60
61
61
62
### Global
@@ -304,13 +305,15 @@ Steam::app()
304
305
```
305
306
306
307
#### appDetails
307
-
This gets all the details for a game. This is most of the infomation from the store page of a game.
308
+
This gets all the details for a game. This is most of the information from the store page of a game.
308
309
309
310
##### Arguments
310
311
311
312
Name | Type | Description | Required | Default
312
313
-----|------|-------------|----------|---------
313
314
appIds| int[] | The ids of the games you want details for | Yes |
315
+
cc | string | The cc is the country code, you can get appropriate currency values according to [ISO 3166-1](https://wikipedia.org/wiki/ISO_3166-1) | No |
316
+
l | string | The l is the language parameter, you can get the appropriate language according to [ISO 639-1](https://wikipedia.org/wiki/ISO_639-1) (If there is one) | No |
314
317
315
318
316
319
> Example Output: [appDetails](./examples/app/appDetails.txt)
@@ -320,6 +323,27 @@ This method will return an array of app objects directly from steam. It include
320
323
321
324
> Example Output: [GetAppList](./examples/app/GetAppList.txt)
322
325
326
+
### Package
327
+
This method will get details for packages.
328
+
329
+
```php
330
+
Steam::package()
331
+
```
332
+
333
+
#### packageDetails
334
+
This gets all the details for a package. This is most of the information from the store page of a package.
335
+
336
+
##### Arguments
337
+
338
+
Name | Type | Description | Required | Default
339
+
-----|------|-------------|----------|---------
340
+
packIds| int[] | The ids of the packages you want details for | Yes |
341
+
cc | string | The cc is the country code, you can get appropriate currency values according to [ISO 3166-1](https://wikipedia.org/wiki/ISO_3166-1) | No |
342
+
l | string | The l is the language parameter, you can get the appropriate language according to [ISO 639-1](https://wikipedia.org/wiki/ISO_639-1) (If there is one) | No |
343
+
344
+
345
+
> Example Output: [packageDetails](./examples/package/packageDetails.txt)
346
+
323
347
### Group
324
348
This service is used to get details on a steam group.
0 commit comments