Toon posts:

[Verzameling] User-agents van gsm-browsers

Pagina: 1
Acties:
  • 102 views sinds 30-01-2008
  • Reageer

Verwijderd

Topicstarter
Hallo,

Ik heb zoals sommigen misschien al weten een online database met ringtones (zo niet, zie sig) en daar ben ik nu op veler verzoek een wap interface voor aan het maken. Ik wil niet dat mensen via een lomp scriptje m'n site gaan rippen (als ze alle ringtones willen hebben mailen ze me maar) dus wilde ik een beveiliging inbouwen die kijkt of er vanaf een PC of GSM iets gedownload wordt, je kunt wap-sites immers ook op je PC openen :). Ik wilde dus aan de hand van de user-agent onderscheid maken. Maar dan moet ik wel eerst weten hoe ik een user-agent van een GSM kan onderscheiden van die van een PC. Daaorm heb ik met toestemming dit topic geopend en wil ik jullie vragen om jullie user-agent te submitten. De results post ik hier later wel, zodat anderen er ook nog profijt van kunnen hebben.

Je kunt je user-agent via WAP ophalen op: http://tjetta.nl/mua/get.php . Je mag hem vervolgens met het merk + type van je toestel posten op http://tjetta.nl/mua/post.php .

Alvast hartelijk bedankt voor jullie medewerking :)

Ik weet dat je met bepaalde programma's elke useragent kan opgeven die je wilt, en daarmee dus alsnog een deel van mijn beveiliging kan omzeilen, maar ik hoop dat jullie geen misbruik van dat gegeven zullen maken. Zoals ik al zei: wil je alle ringtones? Kwestie van ff mailtje sturen... Scheelt ons allebei een hoop moeite ;)

[ Voor 16% gewijzigd door Verwijderd op 12-07-2003 23:45 ]


  • Attilla
  • Registratie: Februari 2001
  • Laatst online: 23-06-2021
Ik zou hier met alle liefde mijn user-agent willen plaatsen, het probleem is alleen dat ik met mijn 6610 geen php files kan openen.

Dus ik weet niet of je hier nog een andere oplossing voor heb ?

Het blijkt dus dat je de verkeerde content type heb:
code:
1
Content-type: text/html

[ Voor 20% gewijzigd door Attilla op 12-07-2003 23:55 ]


  • KRASH
  • Registratie: December 2002
  • Laatst online: 12:56

KRASH

Juist ja...

[Airwolf] schreef op 12 juli 2003 @ 23:51:
Het blijkt dus dat je de verkeerde content type heb:
code:
1
Content-type: text/html
Dit moet je in een .htaccess bestand zetten:
code:
1
2
DirectoryIndex index.wml index.php
AddType application/x-httpd-php .wml


En dit moet je bovenaan je PHP pagina's zetten:
PHP:
1
2
3
<?
header("Content-type: text/vnd.wap.wml");
?>

[ Voor 51% gewijzigd door KRASH op 13-07-2003 00:23 ]


Verwijderd

Topicstarter
Ok, done ;) Bedankt voor je hulp

[ Voor 49% gewijzigd door Verwijderd op 13-07-2003 00:33 ]


  • Attilla
  • Registratie: Februari 2001
  • Laatst online: 23-06-2021
Het werkt :)

Nokia 6610:
code:
1
2
3
Nokia6610/1.0
(3.09) Profile/MIDP-1.0
Configuration/CLDC-1.0

  • Korakal
  • Registratie: Oktober 2001
  • Laatst online: 27-02 03:54

Korakal

Up up up!

Gepost :Y)

Siemens S55:
SIE-S55/12
UP.Browser/6.1.0
5.c.2 (GUI)
MMP/1.0

  • P.B.
  • Registratie: Juli 2001
  • Niet online
SonyEricssonT610/R101 Profile/MIDP-1.0 Configuration/CLDC-1.0

  • Korakal
  • Registratie: Oktober 2001
  • Laatst online: 27-02 03:54

Korakal

Up up up!

M'n M35 pakt 'm niet... weet niet of het nou aan het toestel ligt of iets anders :?

  • Expander
  • Registratie: Februari 2001
  • Niet online
Done en ingevuld voor mijn Sony Ericsson T310:

SonyEricssonT310/-R201

Expanding the inexpandable


  • gitaarwerk
  • Registratie: Augustus 2001
  • Niet online

gitaarwerk

Plays piano,…

Orange SPV:

Mozilla/2.0(compatible; MSIE 3.02;Windows CE; Smartphone; 176x220)
(even bookmarken..dit is erg handig om te gebruiken omdat ik aantal wap/gprs sites aan het maken ben )

[ Voor 40% gewijzigd door gitaarwerk op 13-07-2003 02:55 ]

Ontwikkelaar van NPM library Gleamy


  • Treenaks
  • Registratie: April 2001
  • Laatst online: 27-02 20:32
6210: Nokia6210/1.0 (05.02)
3650: Nokia3650/1.0 SymbianOS/6.1 Series60/1.2 Profile/MIDP-1.0 Configuration/CLDC-1.0

Je kan denk ik beter niet gaan afhangen van die User-Agent-string, maar gewoon netjes WML coden zodat't overal werkt -- anders krijg je weer van die HTML-rotzooi-problemen :)

  • JJapie
  • Registratie: Juli 2001
  • Laatst online: 09:38
Hmm... jongens, doe niet zo moeilijk :P Ik heb ergens een (toch wel erg complete) lijst van useragents van mobiele telefoons. Ff opzoeken....

  • JJapie
  • Registratie: Juli 2001
  • Laatst online: 09:38
GFM schreef op 13 July 2003 @ 10:34:
Hmm... jongens, doe niet zo moeilijk :P Ik heb ergens een (toch wel erg complete) lijst van useragents van mobiele telefoons. Ff opzoeken....
De complete lijst.

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
"Nokia6650"/"1.0" "Profile/MIDP-1.0 Configu
(c10)
(hidden)
Yo 
Alcatel-BH4/1.0 UP.Browser/6.1.0.6.1 (GUI) MMP/1
Alcatel-BH4/1.0 UP.Browser/6.2.ALCATEL MMP/1.0
Amiga-AWeb/3.4APL
AmigaPPC-Browser; (Spoofed by Amiga-AWeb/3.4APL)
Anon 1.6 (UNIX, 1-bit)
Anonymisiert durch Steganos Internet Anonym
ASTEL/1.0/J-0511.00/c10/smel
ATTWS/2.0 N515i-10(c100;TB)
AU-MIC/1.1.4.020722 MMP/2.0
AU-MIC/2.0 MMP/2.0
Blocked by Nor
Blocked by Norton
CIS TE/1.0
COOL
Cuam Ver0.050bx
DoCoMo/1.0/641S/c10
DoCoMo/1.0/642S/c20
DoCoMo/1.0/D209i/c10
DoCoMo/1.0/D210i/c10
DoCoMo/1.0/D211i/c10
DoCoMo/1.0/D251i/c10
DoCoMo/1.0/D251iS/c10/TB
DoCoMo/1.0/D502i/c10
DoCoMo/1.0/D503i/c10
DoCoMo/1.0/D503iS/c10
DoCoMo/1.0/D504i/c10
DoCoMo/1.0/D505i/c20/TB/W20H10
DoCoMo/1.0/eggy/c300/s64/kPHS-K
DoCoMo/1.0/ex_ps1000/c10
DoCoMo/1.0/F209i/c10
DoCoMo/1.0/F210i/c10
DoCoMo/1.0/F211i/c10
DoCoMo/1.0/F212i/c10/TB
DoCoMo/1.0/F251i/c10/c10/TB
DoCoMo/1.0/F251i/c10/TB
DoCoMo/1.0/F502i/c10
DoCoMo/1.0/F503i/c10
DoCoMo/1.0/F503iS/c10
DoCoMo/1.0/F504i/c10/TB
DoCoMo/1.0/F504iS/c10/TB
DoCoMo/1.0/F671i/c10
DoCoMo/1.0/F671iS/c10/TB
DoCoMo/1.0/KO209i
DoCoMo/1.0/N210i
DoCoMo/1.0/N210i/c10
DoCoMo/1.0/N211i/c10
DoCoMo/1.0/N251i/c10/TB
DoCoMo/1.0/N251iS/c10/TB
DoCoMo/1.0/N502i
DoCoMo/1.0/N502it/c10
DoCoMo/1.0/N503i/c10
DoCoMo/1.0/N503iS/c10
DoCoMo/1.0/N504i/c10/TB
DoCoMo/1.0/N504iS/c10/TB
DoCoMo/1.0/N505i/c20/TB/W16H08
DoCoMo/1.0/N505i/c20/TB/W20H10
DoCoMo/1.0/N505i/c20/TB/W30H14
DoCoMo/1.0/P209i/c10
DoCoMo/1.0/P209is/c10
DoCoMo/1.0/P210i/c10
DoCoMo/1.0/P211i/c10
DoCoMo/1.0/P211iS/c10
DoCoMo/1.0/P251iS/c10/TB
DoCoMo/1.0/P502i/c10
DoCoMo/1.0/P503i/c10
DoCoMo/1.0/P503iS/c10
DoCoMo/1.0/P504i/c10/TB
DoCoMo/1.0/P504iS/c10/TB
DoCoMo/1.0/R211i/c10
DoCoMo/1.0/R692i/c10
DoCoMo/1.0/SH251i/c10
DoCoMo/1.0/SH251iS/c10
DoCoMo/1.0/SH505i/c20/TB/W24H12
DoCoMo/1.0/SO210i/c10
DoCoMo/1.0/SO211i/c10
DoCoMo/1.0/SO212i/c10/TB
DoCoMo/1.0/SO502i
DoCoMo/1.0/SO502iWM/c10
DoCoMo/1.0/SO503i/c10
DoCoMo/1.0/SO503iS/c10
DoCoMo/1.0/SO504i/c10/TB
DoCoMo/1.0/SO505i/c20/TB/W18H08
DoCoMo/1.0/SO505i/c20/TB/W21H09
DoCoMo/2.0 D2101V(c100)
DoCoMo/2.0 F2051(c100;TB)
DoCoMo/2.0 F2102V(c100;TB)
DoCoMo/2.0 N2001(c10)
DoCoMo/2.0 N2002(c100)
DoCoMo/2.0 N2051(c100;TB)
DoCoMo/2.0 N2701(c100;TB)
DoCoMo/2.0 P2002(c100)
DoCoMo/2.0 P2101V(c100)
DoCoMo/2.0 P2102V(c100;TB)
DoCoMo/2.0 T2101V(c100)
DoCoMo/2.0/Reference/CNF2(c30;TB)
DoCoMo/3.0/P503i/c10/
Doris/1.10 [en] (Symbian)
Doris/1.15 [en] (Symbian)
EPOC32-WTL/2.2 Crystal/6.0 STNC-WTL/6.0(611)
EricssonT68/R101
EricssonT68/R101 (;; ;; ;; Smartphone; 176x220)
EricssonT68/R1A
EZOS - EzWAP 2.5 for Pocket PC
GetRight/5.0
Hitachi-P300 UP.Browser/6.1.0.2.135 (GUI) MMP/2.
Hutc3G/1 (e606 for Hutchison 3G/c100;ser35107070
Hutc3G/1 (e808 for Hutchison 3G/c100;ser35137413
ia_archiver
J-PHONE/3.0/J-D05
J-PHONE/3.0/J-N05
J-PHONE/3.0/J-SA04_a
J-PHONE/3.0/J-SA05
J-PHONE/3.0/J-SH05_a
J-PHONE/3.0/J-SH06
J-PHONE/3.0/J-SH07
J-PHONE/3.0/J-SH08
J-PHONE/3.0/J-SH09_a
J-PHONE/3.0/J-SH10_a
J-PHONE/3.0/J-T07
J-PHONE/3.0/J-T08
J-PHONE/3.0/J-T09
J-PHONE/4.0/J-K51/SNJKWA1060601 KW/1.00 Profile/
J-PHONE/4.0/J-K51/SNJKWA1114121 KW/1.00 Profile/
J-PHONE/4.0/J-K51/SNJKWA3096379 KW/1.00 Profile/
J-PHONE/4.0/J-P51/SNJMAA1091507 MA/JDP51A40 Prof
J-PHONE/4.0/J-SH51/SNJSHA3002306 SH/0001aa Profi
J-PHONE/4.0/J-T51/SNJTSA1062603 TS/1.00 Profile/
J-PHONE/4.0/J-T51/SNJTSA5033134 TS/1.00 Profile/
J-PHONE/4.1/J-SA51/SNJSAA3035636 SA/0001JP Profi
J-PHONE/4.1/J-SA51_a/SNJSAA3071251 SA/0001JP Pro
J-PHONE/4.1/J-SH52/SNJSHD1004337 SH/0002aa Profi
J-PHONE/4.1/J-SH52/SNJSHD1050613 SH/0002aa Profi
J-PHONE/4.1/J-SH52/SNJSHD1141572 SH/0002aa Profi
James Bond
Java/1.4.1_01
Java/1.4.1_02
Java1.4.0_01
KDDI-CA21 UP.Browser/6.0.6 (GUI) MMP/1.1
KDDI-CA21 UP.Browser/6.0.7.1 (GUI) MMP/1.1
KDDI-CA22 UP.Browser/6.0.8.1 (GUI) MMP/1.1
KDDI-CA22 UP.Browser/6.0.8.2 (GUI) MMP/1.1
KDDI-CA23 UP.Browser/6.2.0.3.111 (GUI) MMP/2.0
KDDI-HI21 UP.Browser/6.0.2.273 (GUI) MMP/1.1
KDDI-HI21 UP.Browser/6.0.6 (GUI) MMP/1.1
KDDI-HI21 UP.Browser/6.0.7.1 (GUI) MMP/1.1
KDDI-HI23 UP.Browser/6.0.8.1 (GUI) MMP/1.1
KDDI-HI23 UP.Browser/6.0.8.3 (GUI) MMP/1.1
KDDI-HI24 UP.Browser/6.0.8.3 (GUI) MMP/1.1
KDDI-KC21 UP.Browser/6.0.2.273 (GUI) MMP/1.1
KDDI-KC21 UP.Browser/6.0.7 (GUI) MMP/1.1
KDDI-KC22 UP.Browser/6.0.8.3 (GUI) MMP/1.1
KDDI-MA21 UP.Browser/6.0.6 (GUI) MMP/1.1
KDDI-MA21 UP.Browser/6.0.7 (GUI) MMP/1.1
KDDI-MA21 UP.Browser/6.0.7.1 (GUI) MMP/1.1
KDDI-SA21 UP.Browser/6.0.6 (GUI) MMP/1.1
KDDI-SA21 UP.Browser/6.0.7 (GUI) MMP/1.1
KDDI-SA21 UP.Browser/6.0.7.1 (GUI) MMP/1.1
KDDI-SA21 UP.Browser/6.0.7.2 (GUI) MMP/1.1
KDDI-SA22 UP.Browser/6.0.7.2 (GUI) MMP/1.1
KDDI-SA24 UP.Browser/6.0.8.2 (GUI) MMP/1.1
KDDI-SN21 UP.Browser/6.0.7 (GUI) MMP/1.1
KDDI-SN22 UP.Browser/6.0.7 (GUI) MMP/1.1
KDDI-SN23 UP.Browser/6.0.8.2 (GUI) MMP/1.1
KDDI-SN24 UP.Browser/6.0.8.2 (GUI) MMP/1.1
KDDI-TS21 UP.Browser/6.0.2.273 (GUI) MMP/1.1
KDDI-TS21 UP.Browser/6.0.2.276 (GUI) MMP/1.1
KDDI-TS21 UP.Browser/6.0.5.287 (GUI) MMP/1.1
KDDI-TS21 UP.Browser/6.0.7.1 (GUI) MMP/1.1
KDDI-TS22 UP.Browser/6.0.6 (GUI) MMP/1.1
KDDI-TS22 UP.Browser/6.0.7 (GUI) MMP/1.1
KDDI-TS22 UP.Browser/6.0.7.1 (GUI) MMP/1.1
KDDI-TS23 UP.Browser/6.0.7.2 (GUI) MMP/1.1
KDDI-TS23 UP.Browser/6.0.8.1 (GUI) MMP/1.1
KDDI-TS23 UP.Browser/6.0.8.2 (GUI) MMP/1.1
KDDI-TS24 UP.Browser/6.0.8.1 (GUI) MMP/1.1
KDDI-TS24 UP.Browser/6.0.8.2 (GUI) MMP/1.1
KGT/1.0 N530i-10
KGT/1.0 N530i-10(c10)
KGT/1.0 N550i-10(c10)
KGT/1.0 N550i-10(c10;TB)
KGT/1.0 T535i-10(c10)
KGT/2.0 N630i-10(c10;TB)
L-mode//1.0/AT/SHAUX-W71/10240/1000
Lachesis
LG G8000/1.0 PDK/2.5
LG G8000/1.0 PDK/2.5 UP.Link/5.1.1.4
LGE-LX5350/1.0 UP.Browser/6.1.0.2.135 (GUI) MMP/
LGE-LX5350/1.0 UP.Browser/6.1.0.6.1.106 (GUI) MM
LGE-LX5350/4.0 UP.Browser/6.1.0.3.121c (GUI) MMP
Mitsu/1.2.B (Eclipse) MMP/1.1 UP.Link/5.1.1.2a
Monzilla/4.0 (compatible; MSIE 5.5; Windows NT 5
MOT-A820/00.00.00 MIB/2.1 Profile/MIDP-1.0 Confi
MOT-A835/_70.0F.08 MIB/2.2 Profile/MIDP-1.0 Conf
MOT-c350M/AS_G_09.04.24R MIB/2.0
MOT-c350M/A_G_09.04.37R MIB/2.0
MOT-c350M/G_09.04.24R MIB/2.0
MOT-c350M/G_09.04.24R MIB/2.0 UP.Link/5.1.1a
MOT-c350M/G_09.04.26R MIB/2.0
MOT-c350M/G_09.04.35R MIB/2.0
MOT-c350M/G_09.04.35R MIB/2.0 UP.Link/5.1.2.3
MOT-c350M/G_09.04.37R MIB/2.0
MOT-c350M/G_09.04.37R MIB/2.0 UP.Link/5.1.1a
MOT-c350M/G_09.04.72R MIB/2.0 UP.Link/5.1.1.4
MOT-E380/0A.03.20R MIB/2.2 Profile/MIDP-1.0 Conf
MOT-T720/05.06.04I MIB/2.0 Profile/MIDP-1.0 Conf
MOT-T720/05.06.0CR MIB/2.0 Profile/MIDP-1.0 Conf
MOT-T720/05.06.18R MIB/2.0 Profile/MIDP-1.0 Conf
MOT-T720/05.08.00R MIB/2.0 Profile/MIDP-1.0 Conf
MOT-T720/05.08.21R MIB/2.0 Profile/MIDP-1.0 Conf
MOT-T720/05.08.40R MIB/2.0 Profile/MIDP-1.0 Conf
MOT-T720/05.08.60R MIB/2.0 Profile/MIDP-1.0 Conf
MOT-T720/3.1ER MIB/2.0 Profile/MIDP-1.0 Configur
MOT-T720/G_05.01.43R MIB/2.0 Profile/MIDP-1.0 Co
MOT-T720/G_05.01.48R MIB/2.0 Profile/MIDP-1.0 Co
MOT-T720/G_05.01.65R MIB/2.0 Profile/MIDP-1.0 Co
MOT-T720/G_05.01.66R MIB/2.0 Profile/MIDP-1.0 Co
MOT-T720/G_05.06.18R MIB/2.0 Profile/MIDP-1.0 Co
MOT-T720/G_05.08.10R MIB/2.0 Profile/MIDP-1.0 Co
MOT-T720/G_05.08.52R MIB/2.0 Profile/MIDP-1.0 Co
MOT-T720/G_05.08.80R MIB/2.0 Profile/MIDP-1.0 Co
MOT-T720/G_05.08.81R MIB/2.0 Profile/MIDP-1.0 Co
MOT-T720/G_05.20.00R MIB/2.0 Profile/MIDP-1.0 Co
MOT-T720/G_05.20.09R MIB/2.0 Profile/MIDP-1.0 Co
MOT-T720/G_05.20.0BR MIB/2.0 Profile/MIDP-1.0 Co
MOT-T720/G_05.20.0CR MIB/2.0 Profile/MIDP-1.0 Co
MOT-T720/PM_G_05.31.09R MIB/2.0 Profile/MIDP-1.0
MOT-T720/PM_G_05.31.1CR MIB/2.0 Profile/MIDP-1.0
MOT-T720/PM_G_05.40.02R MIB/2.0 Profile/MIDP-1.0
MOT-T720/PM_G_05.40.0CR MIB/2.0 Profile/MIDP-1.0
MOT-T720/PM_G_05.40.3FR MIB/2.0 Profile/MIDP-1.0
MOT-T720/PM_G_05.40.43R MIB/2.0 Profile/MIDP-1.0
MOT-T720/PM_G_05.40.45R MIB/2.0 Profile/MIDP-1.0
MOT-T720/PM_G_05.40.50R MIB/2.0 Profile/MIDP-1.0
MOT-T720/PM_G_05.40.51R MIB/2.0 Profile/MIDP-1.0
MOT-T720/PM_G_05.40.52R MIB/2.0 Profile/MIDP-1.0
MOT-T720/PM_G_05.40.53R MIB/2.0 Profile/MIDP-1.0
MOT-T720/PM_G_05.41.54R MIB/2.0 Profile/MIDP-1.0
MOT-T720/PM_G_05.41.59R MIB/2.0 Profile/MIDP-1.0
MOT-T720/S_G_05.31.09R MIB/2.0 Profile/MIDP-1.0
MOT-T720/S_G_05.31.0AR MIB/2.0 Profile/MIDP-1.0
MOT-T720M/G_05.06.20R MIB/2.0 Profile/MIDP-1.0 C
MOT-TA02/G_06.04.2AR_03_MIB2.0 MIB/2.0 UP.Link/5
MOT-V600/00.00.00 MIB/2.2 Profile/MIDP-2.0 Confi
MOT-V600/0B.07.11I MIB/2.2 Profile/MIDP-2.0 Conf
MOT-V600/_G_0B.06. MIB/2.2 Profile/MIDP-2.0 Conf
Motorola-E365 UP.Browser/6.1.0.7 (GUI) MMP/1.0
Motorola-E365/0.3.1 UP.Browser/6.1.0.6 (GUI) MMP
Motorola-E365/0.6.4 UP.Browser/6.1.0.7 (GUI) MMP
MSIE/6.0; (Spoofed by Amiga-AWeb/3.4)
n21i
NEC-525/1.0 up.Browser/6.1.0.6.1 (GUI) MMP/1.0
NEC-525/1.0 up.Browser/6.1.0.6.1 (GUI) MMP/1.0 U
NEC-N8/1.0 UP.Browser/6.1.0.5 (GUI) MMP/1.0 UP.L
NEC-N800/1.0 up.Browser/6.1.0.6.1 (GUI) MMP/1.0
NEC-N8000/1.0 UP.Browser/6.2.2.1.214 (GUI) MMP/1
Nokia Mobile Browser 3.01
Nokia Mobile Browser 4.0 UP.Link/5.1.1.1a
NOKIA-RH-27/V jhyang.0 UP.Browser/6.2.2.1.238 (G
Nokia3100/1.0 (02.42) Profile/MIDP-1.0 Configura
Nokia3100/1.0 (02.50) Profile/MIDP-1.0 Configura
Nokia3100/1.0 (02.70) Profile/MIDP-1.0 Configura
Nokia3100/1.0 (02.71) Profile/MIDP-1.0 Configura
Nokia3300/1.0 (4.05) Profile/MIDP-1.0 Configurat
Nokia3300/2.0 (2.40) Profile/MIDP-1.0 Configurat
Nokia3410/1.0 (04.26)
Nokia3510/1.0 (4.24)
Nokia3510i/1.0 (03.51) Profile/MIDP-1.0 Configur
Nokia3510i/1.0 (04.01) Profile/MIDP-1.0 Configur
Nokia3560/1.0 (01.02) Profile/MIDP-1.0 Configura
Nokia3590/1.0(7.05)
Nokia3590/1.0(7.05) UP.Link/5.1.1.1a
Nokia3590/1.0(7.14) UP.Link/5.1.1.1a
Nokia3595/1.0 (7.00) Profile/MIDP-1.0 Configurat
Nokia3595/1.0 (7.01) Profile/MIDP-1.0 Configurat
Nokia3650/1.0
Nokia3650/1.0 SymbianOS/6.1 Series60/0.9 Profile
Nokia3650/1.0 SymbianOS/6.1 Series60/1.2 Profile
Nokia5100/1.0 Profile/MIDP-1.0 Configuration/CLD
Nokia5100/2.0 Profile/MIDP-1.0 Configuration/CLD
Nokia6100A/1.0 (02.30) Profile/MIDP-1.0 Configur
Nokia6108/1.0 (03.00) Profile/MIDP-1.0 Configura
Nokia6200/1.0 () Profile/MIDP-1.0 Configuration/
Nokia6200/1.0 (3.05) Profile/MIDP-1.0 Configurat
Nokia6200/1.0 (3.10) Profile/MIDP-1.0 Configurat
Nokia6210/1.0 (05.17)
Nokia6210/1.0 (05.56)
Nokia6310i/1.0 (5.50) Profile/MIDP-1.0 Configura
Nokia6590/1.0(40.44) UP.Link/5.1.2.2
Nokia6610/1.0 (3.09) Profile/MIDP-1.0 Configurat
Nokia6610/1.0 (4.74) Profile/MIDP-1.0 Configurat
Nokia6650/1.0 Profile/MIDP-1.0 Configuration/CLD
Nokia6800/2.0 (4.17) Profile/MIDP-1.0 Configurat
Nokia7110/1.0 (04.78)
Nokia7210
Nokia7250/1.0 () Profile/MIDP-1.0 Configuration/
Nokia7250/1.0 (3.12) Profile/MIDP-1.0 Configurat
Nokia7650/1.0 Symbian-QP/6.1 Nokia/2.1 (;; ;; ;;
NokiaN-Gage/1.0 SymbianOS/6.1 Series60/1.2 Profi
Nutscrape/1.0 (CP/M; 8-bit)
Nutscrape/9.0 (CP/M; 8-bit)
Optimay-Seville/1.4 UP.Browser/6.2.2.1.213 (GUI)
Optimay-Seville/1.4 UP.Browser/6.2.2.1.227 (GUI)
OPWV-SDK/61 UP.Browser/6.1.0.3.121c (GUI) MMP/2.
OPWV-SDK/62 UP.Browser/6.2.0.1.103 (GUI) MMP/2.0
OPWV-SDK/62 UP.Browser/6.2.0.1.185 (GUI) MMP/1.0
OPWV-SDK/62 UP.Browser/6.2.0.1.185 (GUI) MMP/2.0
OWG1/4.0 UP.Browser/6.2.2.1.160 (GUI) MMP/1.0 UP
Panasonic-GAD67/1.0 UP.Browser/5.0.3.5 (GUI)
Panasonic-GAD87/A35 UP.Link/5.1.1.1a
Panasonic-GAD87/A38 UP.Link/5.1.1.1a
Panasonic-GAD87/A39
Panasonic-GAD87/A53
Panasonic-GAD87/A53 UP.Link/5.1.1.4
PDXGW/1.0 (TX=10;TY=11;GX=126;GY=132;C=CF-;G=J2;
PDXGW/1.0 (TX=10;TY=9;GX=120;GY=416;C=CF-;G=J2;G
PHP/4.1.2
Pixo-Browser/2.1
portalmmm/1.0 m21i-10(c10)
portalmmm/1.0 M222i-t-10
portalmmm/1.0 n21i-10
portalmmm/1.0 n21i-10(c10)
portalmmm/1.0 n21i-10(c10) (;; ;; ;; ;)
portalmmm/1.0 n21i-10(c138)
portalmmm/1.0 n21i-20(c10)
portalmmm/1.0 n22i-10(c10)
portalmmm/1.0 n320i-10(c10)
portalmmm/1.0 TS21i-10(c10)
portalmmm/1.0 TS21i-10(c3;TB)
portalmmm/2.0 M341i(c10;TB)
portalmmm/2.0 N223i(c10;TB)
portalmmm/2.0 n31i-10(c10;TB)
portalmmm/2.0 n31i-10(c10;TB)(c10)
portalmmm/2.0 N341i(c10;TB)
portalmmm/2.0 n341i-10(c10;TB)(c30;TB)
portalmmm/2.0 N341i-t(c10;TB)
ReqwirelessWeb/2.0.0 MIDP-1.0 CLDC-1.0
ReqwirelessWeb/2.0.0 MIDP-1.0 CLDC-1.0 Nokia6610
ReqwirelessWeb/2.0.0 MIDP-1.0 CLDC-1.0 Nokia7250
ReqwirelessWeb/3.0
ReqwirelessWeb/3.0 Nokia3510i
ReqwirelessWeb/3.0 Nokia3650
ReqwirelessWeb/3.0 Nokia7650
SAGEM-myX-3/1.0 UP.Browser/5.0.1.12.c.1 (GUI)
SAGEM-myX-5m/1.0 UP.Browser/6.1.0.6.1.103 (GUI)
SAGEM-myX-5m/1.0 UP.Browser/6.1.0.6.1.c.1 (GUI)
SAGEM-myX-6/1.0 UP.Browser/6.1.0.6.1.c.1 (GUI) M
SAGEM-myX-6/1.0 UP.Browser/6.1.0.6.1.c.3 (GUI) M
SAGEM-myX-6/1.0 UP.Browser/6.1.0.6.1.c.4 (GUI) M
SAMSUNG-SGH-N620/1.0 UP/4.1.19k
SAMSUNG-SGH-Z100
SEC-SGHS300
SEC-SGHS300 UP.Link/1.0
SHARP-TQ-GX-i98/1.0 Profile/MIDP-1.0 Configurati
SHARP-TQ-GX1/1.0 UP.Browser/6.1.0.5.102 (GUI) MM
SHARP-TQ-GX10
SHARP-TQ-GX10/0.0 Profile/MIDP-1.0 Configuration
SHARP-TQ-GX10/1.0 Profile/MIDP-1.0 Configuration
SHARP-TQ-GX10/1.1 Profile/MIDP-1.0 Configuration
SHARP-TQ-GX10/1.1gr Profile/MIDP-1.0 Configurati
SHARP-TQ-GX10i/1.0 Profile/MIDP-1.0 Configuratio
SHARP-TQ-GX10m/1.0 Profile/MIDP-1.0 Configuratio
SHARP-TQ-GX12/1.0 Profile/MIDP-1.0 Configuration
SHARP-TQ-GX13/1.0 Profile/MIDP-1.0 Configuration
SHARP-TQ-GX20/1.0 Profile/MIDP-1.0 Configuration
SIE-M55/04 UP.Browser/6.1.0.5.c.4 (GUI) MMP/1.0
SIE-M55/04 UP.Browser/6.1.0.5.c.5 (GUI) MMP/1.0
SIE-M55/06 UP.Browser/6.1.0.5.c.4 (GUI) MMP/1.0
SIE-MC60/00 UP.Browser/6.1.0.5.c.5 (GUI) MMP/1.0
SIE-ME45/30 UP.Browser/5.0.2.3.100 (GUI)
SIE-S40/2.9 UP/4.1.16r
SIE-S55/04 UP.Browser/6.1.0.5.119 (GUI) MMP/1.0
SIE-S55/05 UP.Browser/6.1.0.5.121 (GUI) MMP/1.0
SIE-S55/08 UP.Browser/6.1.0.5.c.1 (GUI) MMP/1.0
SIE-S55/09 UP.Browser/6.1.0.5.c.1 (GUI) MMP/1.0
SIE-S55/10 UP.Browser/6.1.0.5.c.2 (GUI) MMP/1.0
SIE-S55/11 UP.Browser/6.1.0.5.c.2 (GUI) MMP/1.0
SIE-S55/12 UP.Browser/6.1.0.5.c.2 (GUI) MMP/1.0
SIE-S55/13 UP.Browser/6.1.0.5.c.2 (GUI) MMP/1.0
SIE-S55/14 UP.Browser/6.1.0.5.c.2 (GUI) MMP/1.0
SIE-S55/15 UP.Browser/6.1.0.5.c.2 (GUI) MMP/1.0
SIE-S55/16 UP.Browser/6.1.0.5.c.4 (GUI) MMP/1.0
SIE-S56/00 UP.Browser/6.1.0.5.c.1 (GUI) MMP/1.0
SIE-S57/08 UP.Browser/6.1.0.5.c.1 (GUI) MMP/1.0
SIE-S57/11 UP.Browser/6.1.0.5.c.2 (GUI) MMP/1.0
SIE-S57/12 UP.Browser/6.1.0.5.c.2 (GUI) MMP/1.0
SIE-S57C/08 UP.Browser/6.1.0.5.c.1 (GUI) MMP/1.0
SIE-S57C/09 UP.Browser/6.1.0.5.c.1 (GUI) MMP/1.0
SIE-SL55/04 UP.Browser/6.1.0.5.c.2 (GUI) MMP/1.0
SIE-SL55/05 UP.Browser/6.1.0.5.c.2 (GUI) MMP/1.0
SIE-SL55/07 UP.Browser/6.1.0.5.c.2 (GUI) MMP/1.0
SIE-SL55/09 UP.Browser/6.1.0.5.c.4 (GUI) MMP/1.0
SonyEricssonP800/R101 Profile/MIDP-1.0 Configura
SonyEricssonT306/R101 UP.Link/5.1.1.1a
SonyEricssonT306/R101 UP.Link/5.1.2.1
SonyEricssonT610/R101 Profile/MIDP-1.0 Configura
SonyEricssonT610/R201 Profile/MIDP-1.0 Configura
SonyEricssonT618/R101 Profile/MIDP-1.0 Configura
SonyEricssonT68/R201A
SonyEricssonT68/R301A
SonyEricssonT68/R301A UP.Link/5.1.1.1a
SonyEricssonT68/R301A UP.Link/5.1.2.1
SonyEricssonT68/R401
SonyEricssonT68/R401 UP.Link/5.1.1.1a
SonyEricssonT68/R402 UP.Link/5.1.1.1a
SonyEricssonT68/R402 UP.Link/5.1.1a
Teleport Pro/1.29
Teleport Pro/1.29.1820
Telit-G82/2.01 UP.Browser/6.1.0.6.c.1.103 (GUI)
TEST012345 6789(c11621;TB)
TEST012345 6789(c11624;TB)
TEST012345 6789(c11629;TB)
TEST012345 6789(c11634;TB)
TEST012345 6789(c11643;TB)
UP.Browser/3.04-CA13 UP.Link/3.4.5.6
UP.Browser/3.04-CA14 UP.Link/3.4.5.6
UP.Browser/3.04-DN11 UP.Link/3.4.5.6
UP.Browser/3.04-HI12 UP.Link/3.4.5.6
UP.Browser/3.04-HI13 UP.Link/3.4.5.6
UP.Browser/3.04-HI14 UP.Link/3.4.5.6
UP.Browser/3.04-KC12 UP.Link/3.4.5.6
UP.Browser/3.04-KC13 UP.Link/3.4.5.6
UP.Browser/3.04-KC14 UP.Link/3.4.5.6
UP.Browser/3.04-KC15 UP.Link/3.4.5.6
UP.Browser/3.04-KCT4 UP.Link/3.4.5.6
UP.Browser/3.04-KCT7 UP.Link/3.4.5.6
UP.Browser/3.04-KCT8 UP.Link/3.4.5.6
UP.Browser/3.04-KCT9 UP.Link/3.4.5.6
UP.Browser/3.04-KCTA UP.Link/3.4.5.6
UP.Browser/3.04-KCTB UP.Link/3.4.5.6
UP.Browser/3.04-KCTC UP.Link/3.4.5.6
UP.Browser/3.04-MA13 UP.Link/3.4.5.6
UP.Browser/3.04-MAT3 UP.Link/3.4.5.6
UP.Browser/3.04-MIT1 UP.Link/3.4.5.6
UP.Browser/3.04-SN12 UP.Link/3.4.5.6
UP.Browser/3.04-SN13 UP.Link/3.4.5.6
UP.Browser/3.04-SN15 UP.Link/3.4.5.6
UP.Browser/3.04-SN17 UP.Link/3.4.5.6
UP.Browser/3.04-ST11 UP.Link/3.4.5.6
UP.Browser/3.04-ST12 UP.Link/3.4.5.6
UP.Browser/3.04-ST13 UP.Link/3.4.5.6
UP.Browser/3.04-ST14 UP.Link/3.4.5.6
UP.Browser/3.04-SY12 UP.Link/3.4.5.6
UP.Browser/3.04-SY14 UP.Link/3.4.5.6
UP.Browser/3.04-SY15 UP.Link/3.4.5.6
UP.Browser/3.04-SYT3 UP.Link/3.4.5.6
UP.Browser/3.04-SYT4 UP.Link/3.4.5.6
UP.Browser/3.04-TS12 UP.Link/3.4.5.6
UP.Browser/3.04-TS13 UP.Link/3.4.5.6
UP.Browser/3.04-TS14 UP.Link/3.4.5.6
UP.Browser/3.04-TST3 UP.Link/3.4.5.6
UP.Browser/3.04-TST4 UP.Link/3.4.5.6
UP.Browser/3.04-TST5 UP.Link/3.4.5.6
UP.Browser/3.04-TST6 UP.Link/3.4.5.6
UP.Browser/3.04-TST7 UP.Link/3.4.5.6
UP.Browser/3.1-UPG1 UP.Link/3.2
UPG1 UP/4.0 (compatible; Blazer 1.0)
UPG1/4.0 UP.Browser/6.1.0.8.127 (GUI) MMP/1.0
User Agent 007
Wapagsim
Wapaka/03.17 (Windows XP; 5.1; x86) DAW/1.0 Symb
Wapalizer/1.1
Wavepluz Mozilla/5.0 (X11; U; Wavepluz FreeBSD 4
WE 8.0
WebAuto/3.40 (WinNT; I)
WebCopier v2.8a
WebStripper/2.56
WinSim UP.Browser/7.0.b.543 (GUI) MMP/1.0 UP.Lin
WinWAP-PRO/3.1 (3.1.6.192)


Ik weet niet precies hoe jij detecteerd, maar ik weet wel hoe ik het doe :P Heb ooit een keer een scriptje geschreven en dat wordt nu ongeveer door de halve wereld gebruikt. Ik maakt gebruik van een preg_match gevolgd door een if-else-statement. Ik kijk naar delen van de UA's, niet de complete. Merken als Nokia stoppen namelijk altijd Nokia in de UA en Siemens altijd SIE- (Letop, als je hier SIE gebruikt, dan laat je IE ook toe aangezien IE MSIE in de UA heeft) in de UA.

Voor de volledigheid voeg ik nog even het script toe, dan snap je beter wat ik bedoel :)
PHP:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
//******************************************//
//     Mobile Device Detection Script       //
//  (c) 2003 - Jan Jaap van Donselaar       //
//         janjaap@dsmarty.com              //
//******************************************//
//            Version 1.4                   //
//******************************************//
//  You may freely distibute and use this   //
//    script as long as you don't remove    //
//            these lines!                  // 
//******************************************//

$is_mobile = preg_match("!Nokia|KDDI|SHARP|portalmmm|UP.Browser|Wapagsim|DoCoMo|Alcatel|ATTWS|Doris|Hutc3G|J-PHONE|Java|KGT|LGE|MOT|ReqwirelessWeb|SAGEM|SIE-|SonyEricsson|Teleport Pro|UPG1!", $HTTP_USER_AGENT); //parts of some different user_agent strings are between the |'s.
   if ($is_mobile) {
      include("imode.php"); //this is the page your cellphone is being forwarded to
   }
   elseif (stristr($HTTP_ACCEPT, "text/vnd.wap.wml")) {
      include("wap.php"); //this is the page your WAP 1.* compatible phone is being forwarded to
   }
   else {
      include("ie.php"); //this is the page your computer is being forwarded to
   }
?> 

[ Voor 10% gewijzigd door JJapie op 13-07-2003 10:45 ]


  • gitaarwerk
  • Registratie: Augustus 2001
  • Niet online

gitaarwerk

Plays piano,…

btw.. wat wil je gaan doen met eeen complete lijst??

het scrpt hierboven ziet er aardig uit :) maar waarom zoveel preg_matches?? moeten alle useragents daarin?? :/
kan je dan neit beter die onder ELSE zetten en de IE versies er maar in? lijkt me stukken minder werk :D

Ontwikkelaar van NPM library Gleamy


Verwijderd

Topicstarter
Bedankt voor jullie reacties!

GFM: dat is idd een handig scriptje + mooie lijst! Wat gitaarwerk zegt is inderdaad ook wel weer waar... :P

  • JJapie
  • Registratie: Juli 2001
  • Laatst online: 09:38
Nee, wat gitaarwerk zegt is niet erg handig. Er komen en zijn bijv. al telefoons die Mozilla in de UA hebben zitten. Dan heb je al een probleem...
Op deze manier kan je zelf duidelijk aangeven welke telefoons erop kunnen komen...
Pagina: 1